make-mp-data 2.0.18 → 2.0.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -36,7 +36,7 @@ const config = {
36
36
  makeChart: false,
37
37
 
38
38
  batchSize: 500_000,
39
- concurrency: 500,
39
+ concurrency: 10,
40
40
 
41
41
  funnels: [],
42
42
  events: [
@@ -29,6 +29,7 @@ const config = {
29
29
  hasSessionIds: false, //if true, hasSessionIds are created for each user
30
30
  alsoInferFunnels: true, //if true, infer funnels from events
31
31
  makeChart: true,
32
+ concurrency: 10,
32
33
  funnels: [
33
34
  {
34
35
  sequence: ["qux", "garply", "durtle", "linny", "fonk", "crumn", "yak"],
@@ -40,6 +40,7 @@ const config = {
40
40
  hasBrowser: true,
41
41
  hasCampaigns: true,
42
42
  isAnonymous: false,
43
+ concurrency: 10,
43
44
 
44
45
 
45
46
  events: [
package/lib/cli/cli.js CHANGED
@@ -100,7 +100,7 @@ DATA MODEL: https://github.com/ak--47/make-mp-data/blob/main/default.js
100
100
  })
101
101
  .option('concurrency', {
102
102
  alias: 'conn',
103
- default: 500,
103
+ default: 10,
104
104
  demandOption: false,
105
105
  describe: 'concurrency level for data generation',
106
106
  type: 'number'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "make-mp-data",
3
- "version": "2.0.18",
3
+ "version": "2.0.19",
4
4
  "description": "builds all mixpanel primitives for a given project",
5
5
  "type": "module",
6
6
  "main": "index.js",