You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/google_cloud/sources/common/bigquery.mjs
+25-9Lines changed: 25 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -26,10 +26,10 @@ export default {
26
26
maxRowsPerExecution: {
27
27
type: "integer",
28
28
label: "Max Rows Per Execution",
29
-
description: "Maximum number of rows to process in a single execution to prevent memory issues",
30
-
default: 5000,
29
+
description: "Maximum number of rows to process in a single execution to prevent memory issues. Reduce this value if you experience out of memory errors.",
30
+
default: 1000,
31
31
min: 100,
32
-
max: 50000,
32
+
max: 10000,
33
33
optional: true,
34
34
},
35
35
datasetId: {
@@ -54,12 +54,23 @@ export default {
54
54
constclient=this.googleCloud
55
55
.getBigQueryClient()
56
56
.dataset(this.datasetId);
57
+
58
+
// Merge jobConfig if provided for better resource management
0 commit comments