Last active
July 23, 2021 02:38
-
-
Save onefoursix/ec78b8d6f7b66cf791caffbae9f97dfc to your computer and use it in GitHub Desktop.
StreamSets Summer 21 Example: Pipeline with a scripting origin that reads a REST API with custom pagination and offset management
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"pipelineConfig": { | |
"schemaVersion" : 6, | |
"version" : 23, | |
"pipelineId" : "ScriptingOriginRESTAPIwithPaginationandOffsetHandling9d21bcdc-ba2b-4c9a-b3c9-29f099d6a5cb", | |
"uuid" : "f808cb09-dbe5-4350-a81b-e88504dc513a", | |
"title" : "Scripting Origin REST API with Pagination and Offset Handling", | |
"description" : "", | |
"configuration" : [ { | |
"name" : "executionMode", | |
"value" : "STANDALONE" | |
}, { | |
"name" : "edgeHttpUrl", | |
"value" : "http://localhost:18633" | |
}, { | |
"name" : "deliveryGuarantee", | |
"value" : "AT_LEAST_ONCE" | |
}, { | |
"name" : "shouldRetry", | |
"value" : false | |
}, { | |
"name" : "triggerInterval", | |
"value" : 2000 | |
}, { | |
"name" : "retryAttempts", | |
"value" : 0 | |
}, { | |
"name" : "ludicrousMode", | |
"value" : false | |
}, { | |
"name" : "ludicrousModeInputCount", | |
"value" : false | |
}, { | |
"name" : "advancedErrorHandling", | |
"value" : false | |
}, { | |
"name" : "notifyOnStates", | |
"value" : [ "RUN_ERROR", "STOPPED", "FINISHED" ] | |
}, { | |
"name" : "emailIDs", | |
"value" : [ ] | |
}, { | |
"name" : "constants", | |
"value" : [ { | |
"key" : "BASE_REST_API_URL", | |
"value" : "https://api.instantwebtools.net/v1/passenger?size=200" | |
}, { | |
"key" : "INITIAL_OFFSET", | |
"value" : "0" | |
}, { | |
"key" : "SLEEP_SECONDS", | |
"value" : "1" | |
}, { | |
"key" : "OUTPUT_DIR", | |
"value" : "/tmp/out" | |
} ] | |
}, { | |
"name" : "errorRecordPolicy", | |
"value" : "ORIGINAL_RECORD" | |
}, { | |
"name" : "workerCount", | |
"value" : 0 | |
}, { | |
"name" : "clusterSlaveMemory", | |
"value" : 2048 | |
}, { | |
"name" : "clusterSlaveJavaOpts", | |
"value" : "-XX:+UseConcMarkSweepGC -XX:+UseParNewGC -Dlog4j.debug" | |
}, { | |
"name" : "clusterLauncherEnv", | |
"value" : [ ] | |
}, { | |
"name" : "mesosDispatcherURL", | |
"value" : null | |
}, { | |
"name" : "logLevel", | |
"value" : "INFO" | |
}, { | |
"name" : "hdfsS3ConfDir", | |
"value" : null | |
}, { | |
"name" : "rateLimit", | |
"value" : 0 | |
}, { | |
"name" : "maxRunners", | |
"value" : 0 | |
}, { | |
"name" : "runnerIdleTIme", | |
"value" : 60 | |
}, { | |
"name" : "shouldCreateFailureSnapshot", | |
"value" : true | |
}, { | |
"name" : "webhookConfigs", | |
"value" : [ ] | |
}, { | |
"name" : "sparkConfigs", | |
"value" : [ ] | |
}, { | |
"name" : "preprocessScript", | |
"value" : "/*\nThe following script define a method\nthat increments an integer by 1 \nand registers it as a UDF with \nthe SparkSession, which can be accessed\nusing the variable named \"spark\":\ndef inc(i: Integer): Integer = {\n i + 1\n}\nspark.udf.register (\"inc\", inc _)\n\n*/" | |
}, { | |
"name" : "clusterConfig.clusterType", | |
"value" : "LOCAL" | |
}, { | |
"name" : "clusterConfig.sparkMasterUrl", | |
"value" : "local[*]" | |
}, { | |
"name" : "clusterConfig.deployMode", | |
"value" : "CLIENT" | |
}, { | |
"name" : "clusterConfig.hadoopUserName", | |
"value" : null | |
}, { | |
"name" : "clusterConfig.sparkAppName", | |
"value" : "${pipeline:title()}" | |
}, { | |
"name" : "clusterConfig.stagingDir", | |
"value" : "/streamsets" | |
}, { | |
"name" : "clusterConfig.useYarnKerberosKeytab", | |
"value" : false | |
}, { | |
"name" : "clusterConfig.yarnKerberosKeytabSource", | |
"value" : "PROPERTIES_FILE" | |
}, { | |
"name" : "clusterConfig.yarnKerberosKeytab", | |
"value" : null | |
}, { | |
"name" : "clusterConfig.yarnKerberosKeytabBase64Bytes", | |
"value" : "" | |
}, { | |
"name" : "clusterConfig.yarnKerberosPrincipal", | |
"value" : "name@DOMAIN" | |
}, { | |
"name" : "clusterConfig.callbackUrl", | |
"value" : null | |
}, { | |
"name" : "databricksConfig.baseUrl", | |
"value" : null | |
}, { | |
"name" : "databricksConfig.credentialType", | |
"value" : "TOKEN" | |
}, { | |
"name" : "databricksConfig.username", | |
"value" : "" | |
}, { | |
"name" : "databricksConfig.password", | |
"value" : "" | |
}, { | |
"name" : "databricksConfig.token", | |
"value" : "" | |
}, { | |
"name" : "databricksConfig.provisionNewCluster", | |
"value" : true | |
}, { | |
"name" : "databricksConfig.clusterId", | |
"value" : null | |
}, { | |
"name" : "databricksConfig.clusterConfig", | |
"value" : "{\n \"num_workers\": 8,\n \"spark_version\": \"5.3.x-scala2.11\",\n \"node_type_id\": \"i3.xlarge\"\n}" | |
}, { | |
"name" : "databricksConfig.terminateCluster", | |
"value" : false | |
}, { | |
"name" : "livyConfig.baseUrl", | |
"value" : "https://localhost:30443/gateway/default/livy/v1/" | |
}, { | |
"name" : "livyConfig.username", | |
"value" : "" | |
}, { | |
"name" : "livyConfig.password", | |
"value" : "" | |
}, { | |
"name" : "sdcEmrConnectionSelection", | |
"value" : "MANUAL" | |
}, { | |
"name" : "sdcEmrConnection.awsConfig.credentialMode", | |
"value" : "WITH_CREDENTIALS" | |
}, { | |
"name" : "sdcEmrConnection.awsConfig.awsAccessKeyId", | |
"value" : "" | |
}, { | |
"name" : "sdcEmrConnection.awsConfig.awsSecretAccessKey", | |
"value" : "" | |
}, { | |
"name" : "sdcEmrConnection.awsConfig.roleARN", | |
"value" : "" | |
}, { | |
"name" : "sdcEmrConnection.awsConfig.roleSessionName", | |
"value" : null | |
}, { | |
"name" : "sdcEmrConnection.awsConfig.sessionDuration", | |
"value" : 3600 | |
}, { | |
"name" : "sdcEmrConnection.awsConfig.setSessionTags", | |
"value" : true | |
}, { | |
"name" : "sdcEmrConnection.region", | |
"value" : "US_WEST_2" | |
}, { | |
"name" : "sdcEmrConnection.customRegion", | |
"value" : null | |
}, { | |
"name" : "sdcEmrConnection.s3StagingUri", | |
"value" : null | |
}, { | |
"name" : "sdcEmrConnection.provisionNewCluster", | |
"value" : false | |
}, { | |
"name" : "sdcEmrConnection.clusterId", | |
"value" : null | |
}, { | |
"name" : "sdcEmrConnection.emrVersion", | |
"value" : null | |
}, { | |
"name" : "sdcEmrConnection.clusterPrefix", | |
"value" : null | |
}, { | |
"name" : "sdcEmrConnection.terminateCluster", | |
"value" : true | |
}, { | |
"name" : "sdcEmrConnection.loggingEnabled", | |
"value" : true | |
}, { | |
"name" : "sdcEmrConnection.s3LogUri", | |
"value" : null | |
}, { | |
"name" : "sdcEmrConnection.serviceRole", | |
"value" : "EMR_DefaultRole" | |
}, { | |
"name" : "sdcEmrConnection.jobFlowRole", | |
"value" : "EMR_EC2_DefaultRole" | |
}, { | |
"name" : "sdcEmrConnection.visibleToAllUsers", | |
"value" : true | |
}, { | |
"name" : "sdcEmrConnection.ec2SubnetId", | |
"value" : null | |
}, { | |
"name" : "sdcEmrConnection.masterSecurityGroup", | |
"value" : null | |
}, { | |
"name" : "sdcEmrConnection.slaveSecurityGroup", | |
"value" : null | |
}, { | |
"name" : "sdcEmrConnection.serviceAccessSecurityGroup", | |
"value" : null | |
}, { | |
"name" : "sdcEmrConnection.instanceCount", | |
"value" : 2 | |
}, { | |
"name" : "sdcEmrConnection.stepConcurrency", | |
"value" : 1 | |
}, { | |
"name" : "sdcEmrConnection.masterInstanceType", | |
"value" : null | |
}, { | |
"name" : "sdcEmrConnection.masterInstanceTypeCustom", | |
"value" : null | |
}, { | |
"name" : "sdcEmrConnection.slaveInstanceType", | |
"value" : null | |
}, { | |
"name" : "sdcEmrConnection.slaveInstanceTypeCustom", | |
"value" : null | |
}, { | |
"name" : "enableEMRDebugging", | |
"value" : true | |
}, { | |
"name" : "transformerEmrConnectionSelection", | |
"value" : "MANUAL" | |
}, { | |
"name" : "transformerEmrConnection.awsConfig.credentialMode", | |
"value" : "WITH_CREDENTIALS" | |
}, { | |
"name" : "transformerEmrConnection.awsConfig.awsAccessKeyId", | |
"value" : "" | |
}, { | |
"name" : "transformerEmrConnection.awsConfig.awsSecretAccessKey", | |
"value" : "" | |
}, { | |
"name" : "transformerEmrConnection.awsConfig.roleARN", | |
"value" : "" | |
}, { | |
"name" : "transformerEmrConnection.awsConfig.roleSessionName", | |
"value" : null | |
}, { | |
"name" : "transformerEmrConnection.awsConfig.sessionDuration", | |
"value" : 3600 | |
}, { | |
"name" : "transformerEmrConnection.awsConfig.setSessionTags", | |
"value" : true | |
}, { | |
"name" : "transformerEmrConnection.region", | |
"value" : "US_WEST_2" | |
}, { | |
"name" : "transformerEmrConnection.customRegion", | |
"value" : null | |
}, { | |
"name" : "transformerEmrConnection.s3StagingUri", | |
"value" : null | |
}, { | |
"name" : "transformerEmrConnection.provisionNewCluster", | |
"value" : false | |
}, { | |
"name" : "transformerEmrConnection.clusterId", | |
"value" : null | |
}, { | |
"name" : "transformerEmrConnection.emrVersion", | |
"value" : null | |
}, { | |
"name" : "transformerEmrConnection.clusterPrefix", | |
"value" : null | |
}, { | |
"name" : "transformerEmrConnection.terminateCluster", | |
"value" : true | |
}, { | |
"name" : "transformerEmrConnection.loggingEnabled", | |
"value" : true | |
}, { | |
"name" : "transformerEmrConnection.s3LogUri", | |
"value" : null | |
}, { | |
"name" : "transformerEmrConnection.serviceRole", | |
"value" : "EMR_DefaultRole" | |
}, { | |
"name" : "transformerEmrConnection.jobFlowRole", | |
"value" : "EMR_EC2_DefaultRole" | |
}, { | |
"name" : "transformerEmrConnection.visibleToAllUsers", | |
"value" : true | |
}, { | |
"name" : "transformerEmrConnection.ec2SubnetId", | |
"value" : null | |
}, { | |
"name" : "transformerEmrConnection.masterSecurityGroup", | |
"value" : null | |
}, { | |
"name" : "transformerEmrConnection.slaveSecurityGroup", | |
"value" : null | |
}, { | |
"name" : "transformerEmrConnection.serviceAccessSecurityGroup", | |
"value" : null | |
}, { | |
"name" : "transformerEmrConnection.instanceCount", | |
"value" : 2 | |
}, { | |
"name" : "transformerEmrConnection.stepConcurrency", | |
"value" : 1 | |
}, { | |
"name" : "transformerEmrConnection.masterInstanceType", | |
"value" : null | |
}, { | |
"name" : "transformerEmrConnection.masterInstanceTypeCustom", | |
"value" : null | |
}, { | |
"name" : "transformerEmrConnection.slaveInstanceType", | |
"value" : null | |
}, { | |
"name" : "transformerEmrConnection.slaveInstanceTypeCustom", | |
"value" : null | |
}, { | |
"name" : "transformerEMRConfig.encryption", | |
"value" : "NONE" | |
}, { | |
"name" : "transformerEMRConfig.kmsKeyId", | |
"value" : "" | |
}, { | |
"name" : "googleCloudCredentialsConfig.projectId", | |
"value" : null | |
}, { | |
"name" : "googleCloudCredentialsConfig.credentialsProvider", | |
"value" : "DEFAULT_PROVIDER" | |
}, { | |
"name" : "googleCloudCredentialsConfig.path", | |
"value" : null | |
}, { | |
"name" : "googleCloudCredentialsConfig.credentialsFileContent", | |
"value" : "" | |
}, { | |
"name" : "googleCloudConfig.region", | |
"value" : null | |
}, { | |
"name" : "googleCloudConfig.customRegion", | |
"value" : null | |
}, { | |
"name" : "googleCloudConfig.gcsStagingUri", | |
"value" : null | |
}, { | |
"name" : "googleCloudConfig.create", | |
"value" : false | |
}, { | |
"name" : "googleCloudConfig.clusterPrefix", | |
"value" : null | |
}, { | |
"name" : "googleCloudConfig.version", | |
"value" : "1.4-ubuntu18" | |
}, { | |
"name" : "googleCloudConfig.masterType", | |
"value" : null | |
}, { | |
"name" : "googleCloudConfig.workerType", | |
"value" : null | |
}, { | |
"name" : "googleCloudConfig.networkType", | |
"value" : null | |
}, { | |
"name" : "googleCloudConfig.network", | |
"value" : null | |
}, { | |
"name" : "googleCloudConfig.subnet", | |
"value" : null | |
}, { | |
"name" : "googleCloudConfig.tags", | |
"value" : [ ] | |
}, { | |
"name" : "googleCloudConfig.workerCount", | |
"value" : 2 | |
}, { | |
"name" : "googleCloudConfig.clusterName", | |
"value" : null | |
}, { | |
"name" : "googleCloudConfig.terminate", | |
"value" : null | |
}, { | |
"name" : "sdcEmrConnection.defineBootstrapActions", | |
"value" : false | |
}, { | |
"name" : "sdcEmrConnection.bootstrapActionSource", | |
"value" : "IN_S3" | |
}, { | |
"name" : "sdcEmrConnection.bootstrapActions", | |
"value" : [ ] | |
}, { | |
"name" : "sdcEmrConnection.bootstrapActionScripts", | |
"value" : [ ] | |
}, { | |
"name" : "transformerEmrConnection.defineBootstrapActions", | |
"value" : false | |
}, { | |
"name" : "transformerEmrConnection.bootstrapActionSource", | |
"value" : "IN_S3" | |
}, { | |
"name" : "transformerEmrConnection.bootstrapActions", | |
"value" : [ ] | |
}, { | |
"name" : "transformerEmrConnection.bootstrapActionScripts", | |
"value" : [ ] | |
}, { | |
"name" : "badRecordsHandling", | |
"value" : "streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_destination_recordstolocalfilesystem_ToErrorLocalFSDTarget::1" | |
}, { | |
"name" : "statsAggregatorStage", | |
"value" : "streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_destination_devnull_StatsDpmDirectlyDTarget::1" | |
}, { | |
"name" : "startEventStage", | |
"value" : "streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_destination_devnull_ToErrorNullDTarget::1" | |
}, { | |
"name" : "stopEventStage", | |
"value" : "streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_destination_devnull_ToErrorNullDTarget::1" | |
}, { | |
"name" : "testOriginStage", | |
"value" : "streamsets-datacollector-dev-lib::com_streamsets_pipeline_stage_devtest_rawdata_RawDataDSource::3" | |
} ], | |
"uiInfo" : { | |
"displayMode" : "ADVANCED", | |
"previewConfig" : { | |
"previewSource" : "CONFIGURED_SOURCE", | |
"batchSize" : 1, | |
"timeout" : 120000, | |
"writeToDestinations" : false, | |
"executeLifecycleEvents" : false, | |
"showHeader" : true, | |
"showFieldType" : true, | |
"rememberMe" : true, | |
"timeZone" : "Browser", | |
"clusterManagerType" : "CONFIGURED_CLUSTER", | |
"endStage" : "" | |
} | |
}, | |
"stages" : [ { | |
"instanceName" : "JythonScripting_01", | |
"library" : "streamsets-datacollector-jython_2_7-lib", | |
"stageName" : "com_streamsets_pipeline_stage_origin_jython_JythonDSource", | |
"stageVersion" : "1", | |
"configuration" : [ { | |
"name" : "script", | |
"value" : "## Example Scripting Origin to call a REST API with pagination and offset handling\n\n# Imports\ntry:\n sdc.importLock()\n import sys\n \n ## Set this path to where we can load the Requests module\n sys.path.append('/usr/local/lib/python3.9/site-packages')\n \n import datetime\n import json\n import requests\n from requests.auth import HTTPBasicAuth \n import time\n \nfinally:\n sdc.importUnlock()\n\n# Set DEBUG to True to enable logging \n# Use '$ tail -f sdc.log | grep SCRIPTING_ORIGIN' to filter the log messages\nDEBUG = True \n \n# Request headers\nheaders = {'Content-Type':'application/json'}\n\n# Create a session\nsession = requests.session()\nsession.headers = headers\n\n# The List field in the response that contains records.\n# Set response_list_field = '' if the entire response is the list of records\nresponse_list_field = 'data'\n \n# The entity_name is the key for the offset\nentity_name = 'page'\n\n# Get previously committed offset or use the pipeline parameter \"INITIAL_OFFSET\"\n# if there is no saved offset or if Reset Origin is used\nif sdc.lastOffsets.containsKey(entity_name):\n offset = int(sdc.lastOffsets.get(entity_name))\n \n # Bump the saved offset by 1 to start reading from the next value\n offset += 1\n\nelse:\n offset = ${INITIAL_OFFSET}\n \n# This example uses 'page=[value]' but could easily be changed to something \n# like 'my_custom_field=[value]' with the value read from the last record in the response\ninitial_url_args = 'page={}'.format(offset)\n\n# set to True for the initial REST API call\ninitial_call = True\n\n# Create a batch\ncur_batch = sdc.createBatch()\n\n# We'll set \"done\" to True when we reach the last page of the response or if we get an error\ndone = False\n\n# index each record\nrecord_index = 0\n\nwhile not done:\n \n try:\n \n # Construct the URL to be called\n if initial_call:\n current_url = '{}&{}'.format('${BASE_REST_API_URL}', initial_url_args)\n initial_call = False\n else:\n current_url = next_page_url\n \n # Call the REST API\n if DEBUG:\n sdc.log.info(\"SCRIPTING_ORIGIN URL: {}\".format(current_url))\n response = session.get(current_url)\n \n # Sleep between calls to the API so we don't get rate-limited \n time.sleep(${SLEEP_SECONDS})\n \n # Get the response data\n if response_list_field == '':\n response_data = response.json()\n else:\n response_data = response.json()[response_list_field]\n \n # Exit if there is no data\n if response_data is None or len(response_data) == 0:\n done = True\n \n else:\n # Get the number of records in the response so\n # we can tell when we're processing the last message\n num_records_in_response = len(response_data)\n \n response_record_index = 0\n \n # Handle each record in the response\n for response_record in response_data:\n \n # Bump the index\n response_record_index += 1\n \n # Create a record for each result record\n record = sdc.createRecord('record created ' + str(datetime.datetime.now()) + str(record_index))\n record_index += 1\n \n # Assign the item to the record\n record.value = {}\n record.value['data'] = response_record\n \n # See if we are on the last record of the response\n # Use this section to capture a last read value of a field\n # for example, in order to construct the next_page_url below\n # rather than using a page number. \n # For example, if we are on the last record:\n if response_record_index == len(response_data):\n last_id_in_response = response_record['_id'] \n \n # Add the record to the batch\n cur_batch.add(record)\n \n # if the batch is full, process it and start a new one\n if cur_batch.size() >= sdc.batchSize:\n # blocks until all records are written to all destinations \n # and updates offset in accordance with delivery guarantee\n cur_batch.process(entity_name, str(offset))\n cur_batch = sdc.createBatch()\n \n # Bump the offset.\n # As this example uses page numbers we just add 1, but you\n # could instead assign a value captured from the last record\n # of the batch above\n offset += 1\n \n # Create the next page URL\n # This example uses 'page=value' but you could use\n # 'my_custom_field=[value]' with the value read from the last record in the response\n next_page_url = '{}&page={}'.format('${BASE_REST_API_URL}', offset)\n\n # Gracefully end the script if the pipeline has been stopped.\n if sdc.isStopped():\n done = True\n\n except Exception as e:\n cur_batch.addError(record, str(e))\n cur_batch.process(entity_name, str(offset))\n done = True\n\nif cur_batch.size() + cur_batch.errorCount() + cur_batch.eventCount() > 0:\n cur_batch.process(entity_name, str(offset))" | |
}, { | |
"name" : "scriptConf.batchSize", | |
"value" : 200 | |
}, { | |
"name" : "scriptConf.numThreads", | |
"value" : 1 | |
}, { | |
"name" : "scriptConf.scriptRecordType", | |
"value" : "NATIVE_OBJECTS" | |
}, { | |
"name" : "scriptConf.params", | |
"value" : [ ] | |
}, { | |
"name" : "stageOnRecordError", | |
"value" : "TO_ERROR" | |
} ], | |
"services" : [ ], | |
"uiInfo" : { | |
"colorIcon" : "Origin_Jython_Scripting.png", | |
"outputStreamLabels" : null, | |
"yPos" : 50, | |
"stageType" : "SOURCE", | |
"rawSource" : null, | |
"icon" : "jython.png", | |
"description" : "", | |
"inputStreamLabels" : null, | |
"label" : "REST API ", | |
"xPos" : 60, | |
"displayMode" : "ADVANCED" | |
}, | |
"inputLanes" : [ ], | |
"outputLanes" : [ "JythonScripting_01OutputLane16159248192550" ], | |
"eventLanes" : [ ] | |
}, { | |
"instanceName" : "LocalFS_01", | |
"library" : "streamsets-datacollector-basic-lib", | |
"stageName" : "com_streamsets_pipeline_stage_destination_localfilesystem_LocalFileSystemDTarget", | |
"stageVersion" : "4", | |
"configuration" : [ { | |
"name" : "configs.uniquePrefix", | |
"value" : "" | |
}, { | |
"name" : "configs.fileNameSuffix", | |
"value" : "json" | |
}, { | |
"name" : "configs.dirPathTemplateInHeader", | |
"value" : false | |
}, { | |
"name" : "configs.dirPathTemplate", | |
"value" : "${OUTPUT_DIR}" | |
}, { | |
"name" : "configs.timeZoneID", | |
"value" : "UTC" | |
}, { | |
"name" : "configs.timeDriver", | |
"value" : "${time:now()}" | |
}, { | |
"name" : "configs.maxRecordsPerFile", | |
"value" : 0 | |
}, { | |
"name" : "configs.maxFileSize", | |
"value" : 0 | |
}, { | |
"name" : "configs.idleTimeout", | |
"value" : "${1 * HOURS}" | |
}, { | |
"name" : "configs.compression", | |
"value" : "NONE" | |
}, { | |
"name" : "configs.otherCompression", | |
"value" : null | |
}, { | |
"name" : "configs.fileType", | |
"value" : "TEXT" | |
}, { | |
"name" : "configs.keyEl", | |
"value" : "${uuid()}" | |
}, { | |
"name" : "configs.lateRecordsLimit", | |
"value" : "${1 * HOURS}" | |
}, { | |
"name" : "configs.rollIfHeader", | |
"value" : false | |
}, { | |
"name" : "configs.rollHeaderName", | |
"value" : "roll" | |
}, { | |
"name" : "configs.lateRecordsAction", | |
"value" : "SEND_TO_ERROR" | |
}, { | |
"name" : "configs.lateRecordsDirPathTemplate", | |
"value" : "/tmp/late/${YYYY()}-${MM()}-${DD()}" | |
}, { | |
"name" : "configs.dataFormat", | |
"value" : "JSON" | |
}, { | |
"name" : "configs.hdfsPermissionCheck", | |
"value" : true | |
}, { | |
"name" : "configs.permissionEL", | |
"value" : null | |
}, { | |
"name" : "configs.skipOldTempFileRecovery", | |
"value" : false | |
}, { | |
"name" : "configs.dataGeneratorFormatConfig.charset", | |
"value" : "UTF-8" | |
}, { | |
"name" : "configs.dataGeneratorFormatConfig.csvFileFormat", | |
"value" : "CSV" | |
}, { | |
"name" : "configs.dataGeneratorFormatConfig.csvHeader", | |
"value" : "NO_HEADER" | |
}, { | |
"name" : "configs.dataGeneratorFormatConfig.csvReplaceNewLines", | |
"value" : true | |
}, { | |
"name" : "configs.dataGeneratorFormatConfig.csvReplaceNewLinesString", | |
"value" : " " | |
}, { | |
"name" : "configs.dataGeneratorFormatConfig.csvCustomDelimiter", | |
"value" : "|" | |
}, { | |
"name" : "configs.dataGeneratorFormatConfig.csvCustomEscape", | |
"value" : "\\" | |
}, { | |
"name" : "configs.dataGeneratorFormatConfig.csvCustomQuote", | |
"value" : "\"" | |
}, { | |
"name" : "configs.dataGeneratorFormatConfig.csvQuoteMode", | |
"value" : "MINIMAL" | |
}, { | |
"name" : "configs.dataGeneratorFormatConfig.jsonMode", | |
"value" : "MULTIPLE_OBJECTS" | |
}, { | |
"name" : "configs.dataGeneratorFormatConfig.textFieldPath", | |
"value" : "/text" | |
}, { | |
"name" : "configs.dataGeneratorFormatConfig.textRecordSeparator", | |
"value" : "\\n" | |
}, { | |
"name" : "configs.dataGeneratorFormatConfig.textFieldMissingAction", | |
"value" : "ERROR" | |
}, { | |
"name" : "configs.dataGeneratorFormatConfig.textEmptyLineIfNull", | |
"value" : false | |
}, { | |
"name" : "configs.dataGeneratorFormatConfig.avroSchemaSource", | |
"value" : null | |
}, { | |
"name" : "configs.dataGeneratorFormatConfig.avroSchema", | |
"value" : null | |
}, { | |
"name" : "configs.dataGeneratorFormatConfig.registerSchema", | |
"value" : false | |
}, { | |
"name" : "configs.dataGeneratorFormatConfig.schemaRegistryUrlsForRegistration", | |
"value" : [ ] | |
}, { | |
"name" : "configs.dataGeneratorFormatConfig.schemaRegistryUrls", | |
"value" : [ ] | |
}, { | |
"name" : "configs.dataGeneratorFormatConfig.basicAuthUserInfo", | |
"value" : "" | |
}, { | |
"name" : "configs.dataGeneratorFormatConfig.schemaLookupMode", | |
"value" : "SUBJECT" | |
}, { | |
"name" : "configs.dataGeneratorFormatConfig.subject", | |
"value" : null | |
}, { | |
"name" : "configs.dataGeneratorFormatConfig.subjectToRegister", | |
"value" : null | |
}, { | |
"name" : "configs.dataGeneratorFormatConfig.basicAuthUserInfoForRegistration", | |
"value" : "" | |
}, { | |
"name" : "configs.dataGeneratorFormatConfig.schemaId", | |
"value" : null | |
}, { | |
"name" : "configs.dataGeneratorFormatConfig.avroCompression", | |
"value" : "NULL" | |
}, { | |
"name" : "configs.dataGeneratorFormatConfig.binaryFieldPath", | |
"value" : "/" | |
}, { | |
"name" : "configs.dataGeneratorFormatConfig.protoDescriptorFile", | |
"value" : null | |
}, { | |
"name" : "configs.dataGeneratorFormatConfig.messageType", | |
"value" : null | |
}, { | |
"name" : "configs.dataGeneratorFormatConfig.fileNameEL", | |
"value" : null | |
}, { | |
"name" : "configs.dataGeneratorFormatConfig.wholeFileExistsAction", | |
"value" : "TO_ERROR" | |
}, { | |
"name" : "configs.dataGeneratorFormatConfig.includeChecksumInTheEvents", | |
"value" : false | |
}, { | |
"name" : "configs.dataGeneratorFormatConfig.checksumAlgorithm", | |
"value" : "MD5" | |
}, { | |
"name" : "configs.dataGeneratorFormatConfig.xmlPrettyPrint", | |
"value" : true | |
}, { | |
"name" : "configs.dataGeneratorFormatConfig.xmlValidateSchema", | |
"value" : false | |
}, { | |
"name" : "configs.dataGeneratorFormatConfig.xmlSchema", | |
"value" : null | |
}, { | |
"name" : "stageOnRecordError", | |
"value" : "TO_ERROR" | |
}, { | |
"name" : "stageRequiredFields", | |
"value" : [ ] | |
}, { | |
"name" : "stageRecordPreconditions", | |
"value" : [ ] | |
} ], | |
"services" : [ ], | |
"uiInfo" : { | |
"colorIcon" : "Destination_Local_FS.png", | |
"outputStreamLabels" : null, | |
"yPos" : 50, | |
"stageType" : "TARGET", | |
"rawSource" : null, | |
"icon" : "localfilesystem.png", | |
"description" : "", | |
"inputStreamLabels" : null, | |
"label" : "Local FS", | |
"xPos" : 280, | |
"displayMode" : "ADVANCED" | |
}, | |
"inputLanes" : [ "JythonScripting_01OutputLane16159248192550" ], | |
"outputLanes" : [ ], | |
"eventLanes" : [ ] | |
} ], | |
"errorStage" : { | |
"instanceName" : "WritetoFile_ErrorStage", | |
"library" : "streamsets-datacollector-basic-lib", | |
"stageName" : "com_streamsets_pipeline_stage_destination_recordstolocalfilesystem_ToErrorLocalFSDTarget", | |
"stageVersion" : "1", | |
"configuration" : [ { | |
"name" : "directory", | |
"value" : "/Users/mark/data/error" | |
}, { | |
"name" : "uniquePrefix", | |
"value" : "sdc-${sdc:id()}" | |
}, { | |
"name" : "rotationIntervalSecs", | |
"value" : "${1 * HOURS}" | |
}, { | |
"name" : "maxFileSizeMbs", | |
"value" : 512 | |
} ], | |
"services" : [ ], | |
"uiInfo" : { | |
"outputStreamLabels" : null, | |
"yPos" : 50, | |
"stageType" : "TARGET", | |
"rawSource" : null, | |
"icon" : "", | |
"description" : "", | |
"inputStreamLabels" : null, | |
"label" : "Error Records - Write to File", | |
"xPos" : 709 | |
}, | |
"inputLanes" : [ ], | |
"outputLanes" : [ ], | |
"eventLanes" : [ ] | |
}, | |
"testOriginStage" : { | |
"instanceName" : "com_streamsets_pipeline_stage_devtest_rawdata_RawDataDSource_TestOriginStage", | |
"library" : "streamsets-datacollector-dev-lib", | |
"stageName" : "com_streamsets_pipeline_stage_devtest_rawdata_RawDataDSource", | |
"stageVersion" : "3", | |
"configuration" : [ { | |
"name" : "rawData", | |
"value" : "{\n \"f1\": \"abc\",\n \"f2\": \"xyz\",\n \"f3\": \"lmn\"\n}" | |
}, { | |
"name" : "stopAfterFirstBatch", | |
"value" : false | |
}, { | |
"name" : "eventData", | |
"value" : null | |
}, { | |
"name" : "stageOnRecordError", | |
"value" : "TO_ERROR" | |
} ], | |
"services" : [ { | |
"service" : "com.streamsets.pipeline.api.service.dataformats.DataFormatParserService", | |
"serviceVersion" : 3, | |
"configuration" : [ { | |
"name" : "displayFormats", | |
"value" : "DELIMITED,JSON,LOG,SDC_JSON,TEXT,XML" | |
}, { | |
"name" : "dataFormat", | |
"value" : "JSON" | |
}, { | |
"name" : "dataFormatConfig.compression", | |
"value" : "NONE" | |
}, { | |
"name" : "dataFormatConfig.filePatternInArchive", | |
"value" : "*" | |
}, { | |
"name" : "dataFormatConfig.charset", | |
"value" : "UTF-8" | |
}, { | |
"name" : "dataFormatConfig.removeCtrlChars", | |
"value" : false | |
}, { | |
"name" : "dataFormatConfig.textMaxLineLen", | |
"value" : 1024 | |
}, { | |
"name" : "dataFormatConfig.useCustomDelimiter", | |
"value" : false | |
}, { | |
"name" : "dataFormatConfig.customDelimiter", | |
"value" : "\\r\\n" | |
}, { | |
"name" : "dataFormatConfig.includeCustomDelimiterInTheText", | |
"value" : false | |
}, { | |
"name" : "dataFormatConfig.jsonContent", | |
"value" : "MULTIPLE_OBJECTS" | |
}, { | |
"name" : "dataFormatConfig.jsonMaxObjectLen", | |
"value" : 4096 | |
}, { | |
"name" : "dataFormatConfig.csvFileFormat", | |
"value" : "CSV" | |
}, { | |
"name" : "dataFormatConfig.csvHeader", | |
"value" : "NO_HEADER" | |
}, { | |
"name" : "dataFormatConfig.csvAllowExtraColumns", | |
"value" : false | |
}, { | |
"name" : "dataFormatConfig.csvExtraColumnPrefix", | |
"value" : "_extra_" | |
}, { | |
"name" : "dataFormatConfig.csvMaxObjectLen", | |
"value" : 1024 | |
}, { | |
"name" : "dataFormatConfig.csvCustomDelimiter", | |
"value" : "|" | |
}, { | |
"name" : "dataFormatConfig.multiCharacterFieldDelimiter", | |
"value" : "||" | |
}, { | |
"name" : "dataFormatConfig.multiCharacterLineDelimiter", | |
"value" : "${str:unescapeJava('\\\\n')}" | |
}, { | |
"name" : "dataFormatConfig.csvCustomEscape", | |
"value" : "\\" | |
}, { | |
"name" : "dataFormatConfig.csvCustomQuote", | |
"value" : "\"" | |
}, { | |
"name" : "dataFormatConfig.csvEnableComments", | |
"value" : false | |
}, { | |
"name" : "dataFormatConfig.csvCommentMarker", | |
"value" : "#" | |
}, { | |
"name" : "dataFormatConfig.csvIgnoreEmptyLines", | |
"value" : false | |
}, { | |
"name" : "dataFormatConfig.csvRecordType", | |
"value" : "LIST_MAP" | |
}, { | |
"name" : "dataFormatConfig.csvSkipStartLines", | |
"value" : 0 | |
}, { | |
"name" : "dataFormatConfig.parseNull", | |
"value" : false | |
}, { | |
"name" : "dataFormatConfig.nullConstant", | |
"value" : "\\\\N" | |
}, { | |
"name" : "dataFormatConfig.xmlRecordElement", | |
"value" : null | |
}, { | |
"name" : "dataFormatConfig.preserveRootElement", | |
"value" : false | |
}, { | |
"name" : "dataFormatConfig.includeFieldXpathAttributes", | |
"value" : false | |
}, { | |
"name" : "dataFormatConfig.xPathNamespaceContext", | |
"value" : [ ] | |
}, { | |
"name" : "dataFormatConfig.outputFieldAttributes", | |
"value" : false | |
}, { | |
"name" : "dataFormatConfig.xmlMaxObjectLen", | |
"value" : 4096 | |
}, { | |
"name" : "dataFormatConfig.logMode", | |
"value" : "COMMON_LOG_FORMAT" | |
}, { | |
"name" : "dataFormatConfig.logMaxObjectLen", | |
"value" : 1024 | |
}, { | |
"name" : "dataFormatConfig.retainOriginalLine", | |
"value" : false | |
}, { | |
"name" : "dataFormatConfig.customLogFormat", | |
"value" : "%h %l %u %t \"%r\" %>s %b" | |
}, { | |
"name" : "dataFormatConfig.regex", | |
"value" : "^(\\S+) (\\S+) (\\S+) \\[([\\w:/]+\\s[+\\-]\\d{4})\\] \"(\\S+) (\\S+) (\\S+)\" (\\d{3}) (\\d+)" | |
}, { | |
"name" : "dataFormatConfig.fieldPathsToGroupName", | |
"value" : [ { | |
"fieldPath" : "/", | |
"group" : 1 | |
} ] | |
}, { | |
"name" : "dataFormatConfig.grokPatternDefinition", | |
"value" : null | |
}, { | |
"name" : "dataFormatConfig.grokPattern", | |
"value" : "%{COMMONAPACHELOG}" | |
}, { | |
"name" : "dataFormatConfig.onParseError", | |
"value" : "ERROR" | |
}, { | |
"name" : "dataFormatConfig.maxStackTraceLines", | |
"value" : 50 | |
}, { | |
"name" : "dataFormatConfig.enableLog4jCustomLogFormat", | |
"value" : false | |
}, { | |
"name" : "dataFormatConfig.log4jCustomLogFormat", | |
"value" : "%r [%t] %-5p %c %x - %m%n" | |
}, { | |
"name" : "dataFormatConfig.avroSchemaSource", | |
"value" : null | |
}, { | |
"name" : "dataFormatConfig.avroSchema", | |
"value" : null | |
}, { | |
"name" : "dataFormatConfig.schemaRegistryUrls", | |
"value" : [ ] | |
}, { | |
"name" : "dataFormatConfig.basicAuth", | |
"value" : "" | |
}, { | |
"name" : "dataFormatConfig.schemaLookupMode", | |
"value" : "SUBJECT" | |
}, { | |
"name" : "dataFormatConfig.subject", | |
"value" : null | |
}, { | |
"name" : "dataFormatConfig.schemaId", | |
"value" : null | |
}, { | |
"name" : "dataFormatConfig.avroSkipUnionIndex", | |
"value" : false | |
}, { | |
"name" : "dataFormatConfig.protoDescriptorFile", | |
"value" : null | |
}, { | |
"name" : "dataFormatConfig.messageType", | |
"value" : null | |
}, { | |
"name" : "dataFormatConfig.isDelimited", | |
"value" : false | |
}, { | |
"name" : "dataFormatConfig.binaryMaxObjectLen", | |
"value" : 1024 | |
}, { | |
"name" : "dataFormatConfig.datagramMode", | |
"value" : "SYSLOG" | |
}, { | |
"name" : "dataFormatConfig.typesDbPath", | |
"value" : null | |
}, { | |
"name" : "dataFormatConfig.convertTime", | |
"value" : false | |
}, { | |
"name" : "dataFormatConfig.excludeInterval", | |
"value" : false | |
}, { | |
"name" : "dataFormatConfig.authFilePath", | |
"value" : null | |
}, { | |
"name" : "dataFormatConfig.netflowOutputValuesMode", | |
"value" : "RAW_AND_INTERPRETED" | |
}, { | |
"name" : "dataFormatConfig.maxTemplateCacheSize", | |
"value" : -1 | |
}, { | |
"name" : "dataFormatConfig.templateCacheTimeoutMs", | |
"value" : -1 | |
}, { | |
"name" : "dataFormatConfig.netflowOutputValuesModeDatagram", | |
"value" : "RAW_AND_INTERPRETED" | |
}, { | |
"name" : "dataFormatConfig.maxTemplateCacheSizeDatagram", | |
"value" : -1 | |
}, { | |
"name" : "dataFormatConfig.templateCacheTimeoutMsDatagram", | |
"value" : -1 | |
}, { | |
"name" : "dataFormatConfig.wholeFileMaxObjectLen", | |
"value" : 8192 | |
}, { | |
"name" : "dataFormatConfig.rateLimit", | |
"value" : "-1" | |
}, { | |
"name" : "dataFormatConfig.verifyChecksum", | |
"value" : false | |
}, { | |
"name" : "dataFormatConfig.excelHeader", | |
"value" : null | |
}, { | |
"name" : "dataFormatConfig.excelSkipCellsWithNoHeader", | |
"value" : false | |
}, { | |
"name" : "dataFormatConfig.excelReadAllSheets", | |
"value" : false | |
}, { | |
"name" : "dataFormatConfig.excelSheetNames", | |
"value" : [ ] | |
}, { | |
"name" : "dataFormatConfig.csvParser", | |
"value" : "LEGACY_PARSER" | |
}, { | |
"name" : "dataFormatConfig.csvUnivocityFieldSeparator", | |
"value" : "," | |
}, { | |
"name" : "dataFormatConfig.csvUnivocityLineSeparator", | |
"value" : "${str:unescapeJava('\\\\n')}" | |
}, { | |
"name" : "dataFormatConfig.csvUnivocityEscape", | |
"value" : "\\" | |
}, { | |
"name" : "dataFormatConfig.csvUnivocityQuote", | |
"value" : "\"" | |
}, { | |
"name" : "dataFormatConfig.csvUnivocityMaxColumns", | |
"value" : 1000 | |
}, { | |
"name" : "dataFormatConfig.csvUnivocityMaxCharsPerColumn", | |
"value" : 1000 | |
}, { | |
"name" : "dataFormatConfig.csvUnivocitySkipEmptyLines", | |
"value" : true | |
}, { | |
"name" : "dataFormatConfig.csvUnivocityAllowComments", | |
"value" : false | |
}, { | |
"name" : "dataFormatConfig.csvUnivocityCommentMarker", | |
"value" : "#" | |
} ] | |
} ], | |
"uiInfo" : { | |
"icon" : "dev.png", | |
"label" : "Test Origin - Dev Raw Data Source", | |
"stageType" : "SOURCE" | |
}, | |
"inputLanes" : [ ], | |
"outputLanes" : [ "com_streamsets_pipeline_stage_devtest_rawdata_RawDataDSource_TestOriginStageOutputLane1" ], | |
"eventLanes" : [ ] | |
}, | |
"info" : { | |
"name" : "ScriptingOriginRESTAPIwithPaginationandOffsetHandling9d21bcdc-ba2b-4c9a-b3c9-29f099d6a5cb", | |
"pipelineId" : "ScriptingOriginRESTAPIwithPaginationandOffsetHandling9d21bcdc-ba2b-4c9a-b3c9-29f099d6a5cb", | |
"title" : "Scripting Origin REST API with Pagination and Offset Handling", | |
"description" : "", | |
"created" : 1626976819885, | |
"lastModified" : 1626976835888, | |
"creator" : "mark@schbrooks", | |
"lastModifier" : "mark@schbrooks", | |
"lastRev" : "0", | |
"uuid" : "f808cb09-dbe5-4350-a81b-e88504dc513a", | |
"valid" : true, | |
"metadata" : { | |
"labels" : [ ], | |
"dpm.base.url" : "https://trailer.streamsetscloud.com", | |
"dpm.pipeline.id" : "e2b08ab2-b3f4-4c62-b415-3f5c4b0ce784:schbrooks", | |
"dpm.pipeline.commit.id" : "e0109492-78e2-400e-88fa-2e2e8f3d7cb8:schbrooks", | |
"dpm.pipeline.rules.id" : "35e5b2f2-e209-41cc-9a9e-70d9da2a79ed:schbrooks", | |
"dpm.pipeline.version" : "11.2", | |
"lastConfigId" : "de0f0621-86a5-4d58-afa6-48f7193613cc", | |
"lastRulesId" : "b79eaa0b-b3de-45a4-bf1a-441c4e128147", | |
"dpm.pipeline.connections" : "" | |
}, | |
"sdcVersion" : "4.0.2", | |
"sdcId" : "422251e5-7ca7-11eb-a8bb-2bab928951bf" | |
}, | |
"issues" : { | |
"pipelineIssues" : [ ], | |
"stageIssues" : { }, | |
"issueCount" : 0 | |
}, | |
"valid" : true, | |
"previewable" : true, | |
"statsAggregatorStage" : { | |
"instanceName" : "statsAggregatorStageInstance", | |
"library" : "streamsets-datacollector-basic-lib", | |
"stageName" : "com_streamsets_pipeline_stage_destination_devnull_StatsDpmDirectlyDTarget", | |
"stageVersion" : "1", | |
"configuration" : [ ], | |
"services" : [ ], | |
"uiInfo" : { | |
"stageType" : "TARGET", | |
"label" : "Stats Aggregator -Write Directly to Control Hub - statistics are not aggregated across Data Collectors" | |
}, | |
"inputLanes" : [ ], | |
"outputLanes" : [ ], | |
"eventLanes" : [ ] | |
}, | |
"metadata" : { | |
"labels" : [ "current" ], | |
"dpm.base.url" : "https://rainier.hub.streamsets.com", | |
"dpm.pipeline.id" : "67425650-7bc3-4228-bce5-78c1b63f44bf:fdbf947b-bdea-11eb-829a-c5478d91211a", | |
"dpm.pipeline.commit.id" : "14819b6b-864a-4998-ad4e-a62f32c1b19a:fdbf947b-bdea-11eb-829a-c5478d91211a", | |
"dpm.pipeline.rules.id" : "c4f58728-9f93-4456-96ff-52da866e1642:fdbf947b-bdea-11eb-829a-c5478d91211a", | |
"dpm.pipeline.version" : "4", | |
"lastConfigId" : "de0f0621-86a5-4d58-afa6-48f7193613cc", | |
"lastRulesId" : "b79eaa0b-b3de-45a4-bf1a-441c4e128147", | |
"dpm.pipeline.connections" : "" | |
}, | |
"startEventStages" : [ { | |
"instanceName" : "Discard_StartEventStage", | |
"library" : "streamsets-datacollector-basic-lib", | |
"stageName" : "com_streamsets_pipeline_stage_destination_devnull_ToErrorNullDTarget", | |
"stageVersion" : "1", | |
"configuration" : [ ], | |
"services" : [ ], | |
"uiInfo" : { | |
"outputStreamLabels" : null, | |
"yPos" : 50, | |
"stageType" : "TARGET", | |
"rawSource" : null, | |
"icon" : "", | |
"description" : "", | |
"inputStreamLabels" : null, | |
"label" : "Start Event - Discard", | |
"xPos" : 280 | |
}, | |
"inputLanes" : [ ], | |
"outputLanes" : [ ], | |
"eventLanes" : [ ] | |
} ], | |
"stopEventStages" : [ { | |
"instanceName" : "Discard_StopEventStage", | |
"library" : "streamsets-datacollector-basic-lib", | |
"stageName" : "com_streamsets_pipeline_stage_destination_devnull_ToErrorNullDTarget", | |
"stageVersion" : "1", | |
"configuration" : [ ], | |
"services" : [ ], | |
"uiInfo" : { | |
"outputStreamLabels" : null, | |
"yPos" : 50, | |
"stageType" : "TARGET", | |
"rawSource" : null, | |
"icon" : "", | |
"description" : "", | |
"inputStreamLabels" : null, | |
"label" : "Stop Event - Discard", | |
"xPos" : 280 | |
}, | |
"inputLanes" : [ ], | |
"outputLanes" : [ ], | |
"eventLanes" : [ ] | |
} ], | |
"fragments" : [ ] | |
}, | |
"pipelineRules": {"schemaVersion":3,"version":2,"metricsRuleDefinitions":[{"id":"badRecordsAlertID","alertText":"High incidence of Error Records","metricId":"pipeline.batchErrorRecords.counter","metricType":"COUNTER","metricElement":"COUNTER_COUNT","condition":"${value() > 100}","sendEmail":false,"enabled":false,"timestamp":1615915115050,"valid":true},{"id":"stageErrorAlertID","alertText":"High incidence of Stage Errors","metricId":"pipeline.batchErrorMessages.counter","metricType":"COUNTER","metricElement":"COUNTER_COUNT","condition":"${value() > 100}","sendEmail":false,"enabled":false,"timestamp":1615915115050,"valid":true},{"id":"idleGaugeID","alertText":"Pipeline is Idle","metricId":"RuntimeStatsGauge.gauge","metricType":"GAUGE","metricElement":"TIME_OF_LAST_RECEIVED_RECORD","condition":"${time:now() - value() > 120000}","sendEmail":false,"enabled":false,"timestamp":1615915115050,"valid":true},{"id":"batchTimeAlertID","alertText":"Batch taking more time to process","metricId":"RuntimeStatsGauge.gauge","metricType":"GAUGE","metricElement":"CURRENT_BATCH_AGE","condition":"${value() > 200}","sendEmail":false,"enabled":false,"timestamp":1615915115050,"valid":true}],"dataRuleDefinitions":[],"driftRuleDefinitions":[],"uuid":"bfea32b1-f3ab-439f-9494-b80e36599949","configuration":[{"name":"emailIDs","value":[]},{"name":"webhookConfigs","value":[]}],"ruleIssues":[],"configIssues":[]}, | |
"libraryDefinitions": {"schemaVersion":"1","pipeline":[{"configGroupDefinition":{"classNameToGroupsMap":{"com.streamsets.datacollector.config.PipelineGroups":["CLUSTER","PARAMETERS","NOTIFICATIONS","BAD_RECORDS","STATS","EMR","DATAPROC","ADVANCED"]},"groupNameToLabelMapList":[{"name":"CLUSTER","label":"Cluster"},{"name":"PARAMETERS","label":"Parameters"},{"name":"NOTIFICATIONS","label":"Notifications"},{"name":"BAD_RECORDS","label":"Error Records"},{"name":"STATS","label":"Statistics"},{"name":"EMR","label":"EMR"},{"name":"DATAPROC","label":"Dataproc"},{"name":"ADVANCED","label":"Advanced"}]},"configDefinitions":[{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"","fieldName":"executionMode","name":"executionMode","type":"MODEL","defaultValue":"STANDALONE","max":9223372036854776000,"model":{"values":["STANDALONE","CLUSTER_BATCH","CLUSTER_YARN_STREAMING","CLUSTER_MESOS_STREAMING","EDGE","EMR_BATCH","BATCH","STREAMING"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.datacollector.config.ExecutionModeChooserValues","filteringConfig":"","labels":["Standalone","Cluster Batch","Cluster Yarn Streaming","Cluster Mesos Streaming","Edge","Cluster EMR Batch","Batch","Streaming"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":10,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Execution Mode","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"executionMode":["EDGE"]},"dependsOn":"","group":"","fieldName":"edgeHttpUrl","name":"edgeHttpUrl","type":"STRING","defaultValue":"http://localhost:18633","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":15,"connectionType":"","displayMode":"ADVANCED","description":"","required":true,"label":"Data Collector Edge URL","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"executionMode":["CLUSTER_YARN_STREAMING","CLUSTER_MESOS_STREAMING","EDGE","STANDALONE","EMR_BATCH","CLUSTER_BATCH"]},"dependsOn":"","group":"","fieldName":"deliveryGuarantee","name":"deliveryGuarantee","type":"MODEL","defaultValue":"AT_LEAST_ONCE","max":9223372036854776000,"model":{"values":["AT_LEAST_ONCE","AT_MOST_ONCE"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.datacollector.config.DeliveryGuaranteeChooserValues","filteringConfig":"","labels":["At Least Once","At Most Once"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":20,"connectionType":"","displayMode":"ADVANCED","description":"","required":true,"label":"Delivery Guarantee","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"executionMode":["CLUSTER_YARN_STREAMING","CLUSTER_MESOS_STREAMING","EDGE","STANDALONE","EMR_BATCH","CLUSTER_BATCH"]},"dependsOn":"","group":"","fieldName":"testOriginStage","name":"testOriginStage","type":"MODEL","defaultValue":"streamsets-datacollector-dev-lib::com_streamsets_pipeline_stage_devtest_rawdata_RawDataDSource::3","max":9223372036854776000,"model":{"values":["streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_origin_coapserver_CoapServerDPushSource::2","streamsets-datacollector-dev-lib::com_streamsets_pipeline_stage_devtest_RandomDataGeneratorSource::5","streamsets-datacollector-dev-lib::com_streamsets_pipeline_stage_devtest_RandomSource::1","streamsets-datacollector-dev-lib::com_streamsets_pipeline_stage_devtest_rawdata_RawDataDSource::3","streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_origin_sdcipcwithbuffer_SdcIpcWithDiskBufferDSource::4","streamsets-datacollector-dev-lib::com_streamsets_pipeline_stage_devtest_replaying_SnapshotReplayDSource::1","streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_origin_spooldir_SpoolDirDSource::12","streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_origin_logtail_FileTailDSource::5","streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_origin_fragment_FragmentSource::1","streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_origin_grpcclient_GrpcClientDSource::3","streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_origin_http_HttpClientDSource::19","streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_origin_httpserver_HttpServerDPushSource::15","streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_origin_javascript_JavascriptDSource::1","streamsets-datacollector-jython_2_7-lib::com_streamsets_pipeline_stage_origin_jython_JythonDSource::1","streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_origin_mqtt_MqttClientDSource::6","streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_origin_httpserver_nifi_NiFiHttpServerDPushSource::4","streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_origin_opcua_OpcUaClientDSource::4","streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_origin_restservice_RestServiceDPushSource::7","streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_origin_sdcipc_SdcIpcDSource::3","streamsets-datacollector-dev-lib::com_streamsets_pipeline_stage_origin_sensorreader_SensorReaderDSource::1","streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_origin_remote_RemoteDownloadDSource::8","streamsets-datacollector-basic-lib::com_streamsets_pipeline_lib_remote_RemoteConnectionVerifier::1","streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_origin_systemmetrics_SystemMetricsDSource::2","streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_origin_tcp_TCPServerDSource::6","streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_origin_udp_MultithreadedUDPDSource::1","streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_origin_udp_UDPDSource::4","streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_origin_websocket_WebSocketClientDSource::7","streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_origin_websocketserver_WebSocketServerDPushSource::15","streamsets-datacollector-windows-lib::com_streamsets_pipeline_stage_origin_windows_WindowsEventLogDSource::3"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.datacollector.config.PipelineTestStageChooserValues","filteringConfig":"","labels":["CoAP Server (Library: Basic)","Dev Data Generator (Library: Dev (for development only))","Dev Random Record Source (Library: Dev (for development only))","Dev Raw Data Source (Library: Dev (for development only))","Dev SDC RPC with Buffering (Library: Basic)","Dev Snapshot Replaying (Library: Dev (for development only))","Directory (Library: Basic)","File Tail (Library: Basic)","Fragment Origin (Library: Basic)","gRPC Client (Library: Basic)","HTTP Client (Library: Basic)","HTTP Server (Library: Basic)","JavaScript Scripting (Library: Basic)","Jython Scripting (Library: Jython 2.7)","MQTT Subscriber (Library: Basic)","NiFi HTTP Server (Library: Basic)","OPC UA Client (Library: Basic)","REST Service (Library: Basic)","SDC RPC (Library: Basic)","Sensor Reader (Library: Dev (for development only))","SFTP/FTP/FTPS Client (Library: Basic)","SFTP/FTP/FTPS Connection Verifier (Library: Basic)","System Metrics (Library: Basic)","TCP Server (Library: Basic)","UDP Multithreaded Source (Library: Basic)","UDP Source (Library: Basic)","WebSocket Client (Library: Basic)","WebSocket Server (Library: Basic)","Windows Event Log (Library: Windows)"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":21,"connectionType":"","displayMode":"ADVANCED","description":"Stage used for testing in preview mode.","required":false,"label":"Test Origin","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"executionMode":["STANDALONE"]},"dependsOn":"","group":"","fieldName":"startEventStage","name":"startEventStage","type":"MODEL","defaultValue":"streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_destination_devnull_ToErrorNullDTarget::1","max":9223372036854776000,"model":{"values":["streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_executor_databricks_DatabricksJobLauncherDExecutor::2","streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_destination_devnull_ToErrorNullDTarget::1","streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_executor_emailexecutor_EmailDExecutor::1","streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_executor_shell_ShellDExecutor::1","streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_destination_sdcipc_ToErrorSdcIpcDTarget::3"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.datacollector.config.PipelineLifecycleStageChooserValues","filteringConfig":"","labels":["Databricks Job Launcher (Library: Basic)","Discard (Library: Basic)","Email (Library: Basic)","Shell (Library: Basic)","Write to Another Pipeline (Library: Basic)"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":23,"connectionType":"","displayMode":"ADVANCED","description":"Stage that should handle pipeline start event.","required":false,"label":"Start Event","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"executionMode":["STANDALONE"]},"dependsOn":"","group":"","fieldName":"stopEventStage","name":"stopEventStage","type":"MODEL","defaultValue":"streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_destination_devnull_ToErrorNullDTarget::1","max":9223372036854776000,"model":{"values":["streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_executor_databricks_DatabricksJobLauncherDExecutor::2","streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_destination_devnull_ToErrorNullDTarget::1","streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_executor_emailexecutor_EmailDExecutor::1","streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_executor_shell_ShellDExecutor::1","streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_destination_sdcipc_ToErrorSdcIpcDTarget::3"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.datacollector.config.PipelineLifecycleStageChooserValues","filteringConfig":"","labels":["Databricks Job Launcher (Library: Basic)","Discard (Library: Basic)","Email (Library: Basic)","Shell (Library: Basic)","Write to Another Pipeline (Library: Basic)"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":26,"connectionType":"","displayMode":"ADVANCED","description":"Stage that should handle pipeline stop event.","required":false,"label":"Stop Event","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"executionMode":["CLUSTER_YARN_STREAMING","CLUSTER_MESOS_STREAMING","STANDALONE","CLUSTER_BATCH"]},"dependsOn":"","group":"","fieldName":"shouldRetry","name":"shouldRetry","type":"BOOLEAN","defaultValue":true,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":30,"connectionType":"","displayMode":"ADVANCED","description":"","required":true,"label":"Retry Pipeline on Error","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":1,"dependsOnMap":{"executionMode":["STREAMING"]},"dependsOn":"","group":"","fieldName":"triggerInterval","name":"triggerInterval","type":"NUMBER","defaultValue":2000,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":35,"connectionType":"","displayMode":"ADVANCED","description":"Time interval between generation of batches","required":false,"label":"Trigger Interval (millis)","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"shouldRetry":[true],"executionMode":["CLUSTER_YARN_STREAMING","CLUSTER_MESOS_STREAMING","STANDALONE","CLUSTER_BATCH"]},"dependsOn":"","group":"","fieldName":"retryAttempts","name":"retryAttempts","type":"NUMBER","defaultValue":-1,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":30,"connectionType":"","displayMode":"ADVANCED","description":"Max no of retries. To retry indefinitely, use -1. The wait time between retries starts at 15 seconds and doubles until reaching 5 minutes.","required":false,"label":"Retry Attempts","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"executionMode":["STREAMING","BATCH"]},"dependsOn":"","group":"","fieldName":"ludicrousMode","name":"ludicrousMode","type":"BOOLEAN","defaultValue":false,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":40,"connectionType":"","displayMode":"ADVANCED","description":"Ludicrous mode may significantly improve performance, but metrics will be limited","required":false,"label":"Enable Ludicrous Mode","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"executionMode":["STREAMING","BATCH"],"ludicrousMode":[true]},"dependsOn":"","group":"","fieldName":"ludicrousModeInputCount","name":"ludicrousModeInputCount","type":"BOOLEAN","defaultValue":false,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":50,"connectionType":"","displayMode":"ADVANCED","description":"Collects and displays input metrics. Can result in rereading data unless origins are configured to cache data","required":false,"label":"Collect Input Metrics","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"executionMode":["STREAMING","BATCH"]},"dependsOn":"","group":"","fieldName":"advancedErrorHandling","name":"advancedErrorHandling","type":"BOOLEAN","defaultValue":false,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":60,"connectionType":"","displayMode":"ADVANCED","description":"Reports the record that generates an error, when possible. Supported in single-origin pipelines","required":false,"label":"Advanced Error Handling","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"executionMode":["CLUSTER_YARN_STREAMING","CLUSTER_MESOS_STREAMING","STANDALONE","STREAMING","CLUSTER_BATCH","BATCH"]},"dependsOn":"","group":"NOTIFICATIONS","fieldName":"notifyOnStates","name":"notifyOnStates","type":"MODEL","defaultValue":["RUN_ERROR","STOPPED","FINISHED"],"max":9223372036854776000,"model":{"values":["RUNNING","START_ERROR","RUN_ERROR","RUNNING_ERROR","STOPPED","FINISHED","DISCONNECTED","CONNECTING","STOP_ERROR"],"configDefinitions":null,"modelType":"MULTI_VALUE_CHOOSER","valuesProviderClass":"com.streamsets.datacollector.config.PipelineStateChooserValues","filteringConfig":null,"labels":["Running","Start Error","Run Error","Running Error","Stopped","Finished","Disconnected","Connecting","Stop Error"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":75,"connectionType":"","displayMode":"ADVANCED","description":"Notifies via email when pipeline gets to the specified states","required":false,"label":"Notify on Pipeline State Changes","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"executionMode":["CLUSTER_YARN_STREAMING","CLUSTER_MESOS_STREAMING","STANDALONE","STREAMING","CLUSTER_BATCH","BATCH"]},"dependsOn":"","group":"NOTIFICATIONS","fieldName":"emailIDs","name":"emailIDs","type":"LIST","defaultValue":[],"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":76,"connectionType":"","displayMode":"ADVANCED","description":"Email Addresses","required":false,"label":"Email IDs","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"PARAMETERS","fieldName":"constants","name":"constants","type":"MAP","defaultValue":[],"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":80,"connectionType":"","displayMode":"ADVANCED","description":"","required":false,"label":"Parameters","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"executionMode":["CLUSTER_YARN_STREAMING","CLUSTER_MESOS_STREAMING","EDGE","STANDALONE","EMR_BATCH","CLUSTER_BATCH"]},"dependsOn":"","group":"BAD_RECORDS","fieldName":"badRecordsHandling","name":"badRecordsHandling","type":"MODEL","defaultValue":"streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_destination_devnull_ToErrorNullDTarget::1","max":9223372036854776000,"model":{"values":["streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_destination_devnull_ToErrorNullDTarget::1","streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_destination_tooriginresponse_ToErrorOriginResponseDTarget::2","streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_destination_sdcipc_ToErrorSdcIpcDTarget::3","streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_destination_recordstolocalfilesystem_ToErrorLocalFSDTarget::1","streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_destination_mqtt_ToErrorMqttClientDTarget::5"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.datacollector.config.ErrorHandlingChooserValues","filteringConfig":"","labels":["Discard (Library: Basic)","Send Response to Origin (Library: Basic)","Write to Another Pipeline (Library: Basic)","Write to File (Library: Basic)","Write to MQTT (Library: Basic)"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":90,"connectionType":"","displayMode":"ADVANCED","description":"","required":true,"label":"Error Records","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"executionMode":["CLUSTER_YARN_STREAMING","CLUSTER_MESOS_STREAMING","EDGE","STANDALONE","EMR_BATCH","CLUSTER_BATCH"]},"dependsOn":"","group":"BAD_RECORDS","fieldName":"errorRecordPolicy","name":"errorRecordPolicy","type":"MODEL","defaultValue":"ORIGINAL_RECORD","max":9223372036854776000,"model":{"values":["ORIGINAL_RECORD","STAGE_RECORD"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.datacollector.config.ErrorRecordPolicyChooserValues","filteringConfig":"","labels":["Original record as it was generated by the origin.","Record as it was seen by the stage that sent it to error stream."]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":93,"connectionType":"","displayMode":"ADVANCED","description":"Determines which variation of the record is sent to error.","required":true,"label":"Error Record Policy","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"executionMode":["CLUSTER_YARN_STREAMING","CLUSTER_MESOS_STREAMING","EDGE","STANDALONE","STREAMING","EMR_BATCH","CLUSTER_BATCH","BATCH"]},"dependsOn":"","group":"STATS","fieldName":"statsAggregatorStage","name":"statsAggregatorStage","type":"MODEL","defaultValue":"streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_destination_devnull_StatsDpmDirectlyDTarget::1","max":9223372036854776000,"model":{"values":["streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_destination_devnull_StatsNullDTarget::1","streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_destination_devnull_StatsDpmDirectlyDTarget::1","streamsets-datacollector-basic-lib::com_streamsets_pipeline_stage_destination_sdcipc_StatsSdcIpcDTarget::3"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.datacollector.config.StatsTargetChooserValues","filteringConfig":"","labels":["Discard (Library: Basic)","Write Directly to Control Hub - statistics are not aggregated across Data Collectors (Library: Basic)","Write to SDC RPC (Library: Basic)"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":95,"connectionType":"","displayMode":"BASIC","description":"","required":false,"label":"Statistics Aggregator","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":0,"dependsOnMap":{"executionMode":["CLUSTER_YARN_STREAMING"]},"dependsOn":"","group":"CLUSTER","fieldName":"workerCount","name":"workerCount","type":"NUMBER","defaultValue":0,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":100,"connectionType":"","displayMode":"ADVANCED","description":"Number of workers. 0 to start as many workers as Kafka partitions for topic.","required":true,"label":"Worker Count","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"executionMode":["CLUSTER_YARN_STREAMING","EMR_BATCH","CLUSTER_BATCH"]},"dependsOn":"","group":"CLUSTER","fieldName":"clusterSlaveMemory","name":"clusterSlaveMemory","type":"NUMBER","defaultValue":2048,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":150,"connectionType":"","displayMode":"ADVANCED","description":"","required":true,"label":"Worker Memory (MB)","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"executionMode":["CLUSTER_YARN_STREAMING","EMR_BATCH","CLUSTER_BATCH"]},"dependsOn":"","group":"CLUSTER","fieldName":"clusterSlaveJavaOpts","name":"clusterSlaveJavaOpts","type":"STRING","defaultValue":"-XX:+UseConcMarkSweepGC -XX:+UseParNewGC -Dlog4j.debug","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":110,"connectionType":"","displayMode":"ADVANCED","description":"Add properties as needed. Changes to default settings are not recommended.","required":true,"label":"Worker Java Options","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"executionMode":["CLUSTER_YARN_STREAMING","CLUSTER_BATCH"]},"dependsOn":"","group":"CLUSTER","fieldName":"clusterLauncherEnv","name":"clusterLauncherEnv","type":"MAP","defaultValue":[],"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":120,"connectionType":"","displayMode":"ADVANCED","description":"Sets additional environment variables for the cluster launcher","required":false,"label":"Launcher ENV","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"executionMode":["CLUSTER_MESOS_STREAMING"]},"dependsOn":"","group":"CLUSTER","fieldName":"mesosDispatcherURL","name":"mesosDispatcherURL","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":130,"connectionType":"","displayMode":"BASIC","description":"URL for service which launches Mesos framework","required":true,"label":"Mesos Dispatcher URL","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"executionMode":["STREAMING","EMR_BATCH","BATCH"]},"dependsOn":"","group":"CLUSTER","fieldName":"logLevel","name":"logLevel","type":"MODEL","defaultValue":"INFO","max":9223372036854776000,"model":{"values":["OFF","FATAL","ERROR","WARN","INFO","DEBUG","TRACE"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.datacollector.config.LogLevelChooserValues","filteringConfig":"","labels":["OFF","FATAL","ERROR","WARN","INFO","DEBUG","TRACE"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":140,"connectionType":"","displayMode":"ADVANCED","description":"Log level to use for the launched application","required":true,"label":"Log Level","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"executionMode":["CLUSTER_MESOS_STREAMING"]},"dependsOn":"","group":"CLUSTER","fieldName":"hdfsS3ConfDir","name":"hdfsS3ConfDir","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":150,"connectionType":"","displayMode":"BASIC","description":"An SDC resource directory or symbolic link with HDFS/S3 configuration files core-site.xml and hdfs-site.xml","required":true,"label":"Checkpoint Configuration Directory","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"executionMode":["CLUSTER_YARN_STREAMING","CLUSTER_MESOS_STREAMING","STANDALONE","CLUSTER_BATCH"]},"dependsOn":"","group":"","fieldName":"rateLimit","name":"rateLimit","type":"NUMBER","defaultValue":0,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":180,"connectionType":"","displayMode":"ADVANCED","description":"Maximum number of records per second that should be accepted into the pipeline. Rate is not limited if this is not set, or is set to 0","required":false,"label":"Rate Limit (records / sec)","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":0,"dependsOnMap":{"executionMode":["CLUSTER_YARN_STREAMING","CLUSTER_MESOS_STREAMING","STANDALONE","CLUSTER_BATCH"]},"dependsOn":"","group":"","fieldName":"maxRunners","name":"maxRunners","type":"NUMBER","defaultValue":0,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":190,"connectionType":"","displayMode":"ADVANCED","description":"Maximum number of runners that should be created for this pipeline. Use 0 to not impose limit.","required":false,"label":"Max Runners","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"executionMode":["STANDALONE"]},"dependsOn":"","group":"","fieldName":"runnerIdleTIme","name":"runnerIdleTIme","type":"NUMBER","defaultValue":60,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":200,"connectionType":"","displayMode":"ADVANCED","description":"When pipeline runners are idle for at least this time, run an empty batch through the runner to process any events or other time-driven functionality. Value -1 will disable this functionality completely.","required":true,"label":"Runner Idle Time (sec)","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"executionMode":["STANDALONE"]},"dependsOn":"","group":"","fieldName":"shouldCreateFailureSnapshot","name":"shouldCreateFailureSnapshot","type":"BOOLEAN","defaultValue":true,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":205,"connectionType":"","displayMode":"ADVANCED","description":"Attempts to create a partial snapshot with unprocessed records if the pipeline fails","required":true,"label":"Create Failure Snapshot","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"executionMode":["CLUSTER_YARN_STREAMING","CLUSTER_MESOS_STREAMING","STANDALONE","STREAMING","CLUSTER_BATCH","BATCH"]},"dependsOn":"","group":"NOTIFICATIONS","fieldName":"webhookConfigs","name":"webhookConfigs","type":"MODEL","defaultValue":[],"max":9223372036854776000,"model":{"values":null,"configDefinitions":[{"min":-9223372036854776000,"dependsOnMap":{"httpMethod":["DELETE","POST","PUT"]},"dependsOn":"","group":"NOTIFICATIONS","fieldName":"payload","name":"payload","type":"TEXT","defaultValue":"{\n \"text\" : \"Pipeline '{{PIPELINE_TITLE}}' state changed to {{PIPELINE_STATE}} at {{TIME}}. \\n <{{PIPELINE_URL}}|Click here> for details!\",\n \"fields\": [\n \t{\n\t\t\t\"title\": \"Pipeline Status Message\", \n\t\t\t\"value\": \"{{PIPELINE_STATE_MESSAGE}}\",\n \t\t\"short\": true\n\t\t},\n\t\t{\n\t\t\t\"title\": \"Pipeline Input Records Count\", \n\t\t\t\"value\": \"{{PIPELINE_INPUT_RECORDS_COUNT}}\",\n \"short\": true\n\t\t},\n\t\t{\n\t\t\t\"title\": \"Pipeline Output Records Count\", \n\t\t\t\"value\": \"{{PIPELINE_OUTPUT_RECORDS_COUNT}}\",\n \"short\": true\n\t\t},\n\t\t{\n\t\t\t\"title\": \"Pipeline Error Records Count\", \n\t\t\t\"value\": \"{{PIPELINE_ERROR_RECORDS_COUNT}}\",\n \"short\": true\n\t\t},\n\t\t{\n\t\t\t\"title\": \"Pipeline Error Messages Count\", \n\t\t\t\"value\": \"{{PIPELINE_ERROR_MESSAGES_COUNT}}\",\n \"short\": true\n\t\t},\n\t\t{\n\t\t\t\"title\": \"Pipeline Runtime Parameters\", \n\t\t\t\"value\": \"{{PIPELINE_RUNTIME_PARAMETERS}}\",\n \t\"short\": true\n\t\t}\n\t]\n}","max":9223372036854776000,"model":null,"lines":2,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":240,"connectionType":"","displayMode":"BASIC","description":"Data that should be included as a part of the Webhook request","required":false,"label":"Payload","mode":"application/json","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"","fieldName":"webhookUrl","name":"webhookUrl","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":200,"connectionType":"","displayMode":"BASIC","description":"The Webhook HTTP resource URL","required":false,"label":"Webhook URL","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"NOTIFICATIONS","fieldName":"headers","name":"headers","type":"MAP","defaultValue":[],"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":210,"connectionType":"","displayMode":"BASIC","description":"Headers to include in the request","required":false,"label":"Headers","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"NOTIFICATIONS","fieldName":"httpMethod","name":"httpMethod","type":"MODEL","defaultValue":"POST","max":9223372036854776000,"model":{"values":["GET","PUT","POST","DELETE","HEAD"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.datacollector.config.HttpMethodChooserValues","filteringConfig":"","labels":["GET","PUT","POST","DELETE","HEAD"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":220,"connectionType":"","displayMode":"BASIC","description":"HTTP method to send","required":true,"label":"HTTP Method","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"httpMethod":["DELETE","POST","PUT"]},"dependsOn":"","group":"NOTIFICATIONS","fieldName":"contentType","name":"contentType","type":"STRING","defaultValue":"application/json","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":250,"connectionType":"","displayMode":"BASIC","description":"Content-Type header to be sent with the request; used if that header is not already present","required":false,"label":"Content Type","mode":"text/plain","elDefs":null,"evaluation":"EXPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"NOTIFICATIONS","fieldName":"authType","name":"authType","type":"MODEL","defaultValue":"NONE","max":9223372036854776000,"model":{"values":["NONE","BASIC","DIGEST","UNIVERSAL"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.datacollector.config.AuthenticationTypeChooserValues","filteringConfig":"","labels":["None","Basic","Digest","Universal"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":260,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Authentication Type","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"authType":["BASIC","UNIVERSAL","DIGEST"]},"dependsOn":"","group":"NOTIFICATIONS","fieldName":"username","name":"username","type":"CREDENTIAL","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63","65","66","67","68"],"elConstantDefinitionsIdx":["64"],"displayPosition":270,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Username","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"authType":["BASIC","UNIVERSAL","DIGEST"]},"dependsOn":"","group":"NOTIFICATIONS","fieldName":"password","name":"password","type":"CREDENTIAL","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63","65","66","67","68"],"elConstantDefinitionsIdx":["64"],"displayPosition":280,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Password","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"}],"modelType":"LIST_BEAN","valuesProviderClass":null,"filteringConfig":null,"labels":null},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":210,"connectionType":"","displayMode":"ADVANCED","description":"Webhooks","required":false,"label":"Webhooks","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"executionMode":["CLUSTER_YARN_STREAMING","STREAMING","CLUSTER_BATCH","BATCH"]},"dependsOn":"","group":"CLUSTER","fieldName":"sparkConfigs","name":"sparkConfigs","type":"MAP","defaultValue":[],"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":220,"connectionType":"","displayMode":"BASIC","description":"Additional Spark Configuration to pass to the spark-submit script, the parameters will be passed as --conf <key>=<value>","required":false,"label":"Extra Spark Configuration","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"executionMode":["STREAMING","BATCH"]},"dependsOn":"","group":"ADVANCED","fieldName":"preprocessScript","name":"preprocessScript","type":"TEXT","defaultValue":"/*\nThe following script define a method\nthat increments an integer by 1 \nand registers it as a UDF with \nthe SparkSession, which can be accessed\nusing the variable named \"spark\":\ndef inc(i: Integer): Integer = {\n i + 1\n}\nspark.udf.register (\"inc\", inc _)\n\n*/","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":10,"connectionType":"","displayMode":"ADVANCED","description":"Scala script to run on the driver before starting the pipeline. Can be used to register user defined functions, etc. Use the 'spark' variable to access the Spark session","required":false,"label":"Preprocessing Script","mode":"text/x-scala","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"executionMode":["STREAMING","BATCH"]},"dependsOn":"","group":"CLUSTER","fieldName":"clusterType","name":"clusterConfig.clusterType","type":"MODEL","defaultValue":"LOCAL","max":9223372036854776000,"model":{"values":["AZURE_HD_INSIGHT","DATABRICKS","EMR","DATAPROC","YARN","KUBERNETES","LOCAL","STANDALONE_SPARK_CLUSTER","SQL_SERVER_BIG_DATA_CLUSTER"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.datacollector.config.SparkClusterTypeChooserValues","filteringConfig":"","labels":["Apache Spark for HDInsight","Databricks","EMR","Dataproc","Hadoop YARN","Kubernetes Cluster","None (local)","Spark Standalone Cluster","SQL Server 2019 Big Data Cluster"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":101,"connectionType":"","displayMode":"BASIC","description":"Type of cluster manager used by the Spark cluster","required":true,"label":"Cluster Manager Type","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["LOCAL","STANDALONE_SPARK_CLUSTER"],"executionMode":["STREAMING","BATCH"]},"dependsOn":"","group":"CLUSTER","fieldName":"sparkMasterUrl","name":"clusterConfig.sparkMasterUrl","type":"STRING","defaultValue":"local[*]","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":102,"connectionType":"","displayMode":"BASIC","description":"Master URL to connect to Spark","required":true,"label":"Master URL","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["YARN","KUBERNETES","STANDALONE_SPARK_CLUSTER"],"executionMode":["STREAMING","BATCH"]},"dependsOn":"","group":"CLUSTER","fieldName":"deployMode","name":"clusterConfig.deployMode","type":"MODEL","defaultValue":"CLIENT","max":9223372036854776000,"model":{"values":["CLIENT","CLUSTER"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.datacollector.config.SparkDeployModeChooserValues","filteringConfig":"","labels":["Client","Cluster"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":103,"connectionType":"","displayMode":"ADVANCED","description":"Mode used to launch the Spark driver process","required":true,"label":"Deployment Mode","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["YARN"],"executionMode":["STREAMING","BATCH"]},"dependsOn":"","group":"CLUSTER","fieldName":"hadoopUserName","name":"clusterConfig.hadoopUserName","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":104,"connectionType":"","displayMode":"ADVANCED","description":"Name of the Hadoop user that StreamSets impersonates","required":false,"label":"Hadoop User Name","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"executionMode":["STREAMING","BATCH"]},"dependsOn":"","group":"CLUSTER","fieldName":"sparkAppName","name":"clusterConfig.sparkAppName","type":"STRING","defaultValue":"${pipeline:title()}","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":105,"connectionType":"","displayMode":"ADVANCED","description":"Name of the launched Spark application","required":true,"label":"Application Name","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["DATABRICKS","EMR","SQL_SERVER_BIG_DATA_CLUSTER","AZURE_HD_INSIGHT"],"executionMode":["STREAMING","BATCH"]},"dependsOn":"","group":"CLUSTER","fieldName":"stagingDir","name":"clusterConfig.stagingDir","type":"STRING","defaultValue":"/streamsets","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":106,"connectionType":"","displayMode":"ADVANCED","description":"Staging directory on the remote system for copying StreamSets resources","required":true,"label":"Staging Directory","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["YARN"],"executionMode":["STREAMING","BATCH"]},"dependsOn":"","group":"CLUSTER","fieldName":"useYarnKerberosKeytab","name":"clusterConfig.useYarnKerberosKeytab","type":"BOOLEAN","defaultValue":false,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":1000,"connectionType":"","displayMode":"BASIC","description":"Indicates that the Spark application should use a principal and keytab for Kerberos authentication","required":true,"label":"Use YARN Kerberos Keytab","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["YARN"],"executionMode":["STREAMING","BATCH"],"clusterConfig.useYarnKerberosKeytab":[true]},"dependsOn":"","group":"CLUSTER","fieldName":"yarnKerberosKeytabSource","name":"clusterConfig.yarnKerberosKeytabSource","type":"MODEL","defaultValue":"PROPERTIES_FILE","max":9223372036854776000,"model":{"values":["PROPERTIES_FILE","PIPELINE","PIPELINE_CREDENTIAL_STORE"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.datacollector.config.KeytabSourceChooserValues","filteringConfig":"","labels":["Transformer Configuration File","Pipeline Configuration - File","Pipeline Configuration - Credential Store"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":1050,"connectionType":"","displayMode":"BASIC","description":"Source for the Kerberos keytab used to launch the Spark application","required":true,"label":"Keytab Source","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.yarnKerberosKeytabSource":["PIPELINE"],"clusterConfig.clusterType":["YARN"],"executionMode":["STREAMING","BATCH"],"clusterConfig.useYarnKerberosKeytab":[true]},"dependsOn":"","group":"CLUSTER","fieldName":"yarnKerberosKeytab","name":"clusterConfig.yarnKerberosKeytab","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":1100,"connectionType":"","displayMode":"BASIC","description":"Absolute path to the Kerberos keytab used to launch the Spark application for the pipeline","required":true,"label":"YARN Kerberos Keytab Path","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.yarnKerberosKeytabSource":["PIPELINE_CREDENTIAL_STORE"],"clusterConfig.clusterType":["YARN"],"executionMode":["STREAMING","BATCH"],"clusterConfig.useYarnKerberosKeytab":[true]},"dependsOn":"","group":"CLUSTER","fieldName":"yarnKerberosKeytabBase64Bytes","name":"clusterConfig.yarnKerberosKeytabBase64Bytes","type":"CREDENTIAL","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"BASE64","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63","65","66","67","68"],"elConstantDefinitionsIdx":["64"],"displayPosition":1150,"connectionType":"","displayMode":"BASIC","description":"Credential function to retrieve the base64 encoded keytab from a credential store.","required":true,"label":"Keytab Credential Function","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.yarnKerberosKeytabSource":["PIPELINE_CREDENTIAL_STORE","PIPELINE"],"clusterConfig.clusterType":["YARN"],"executionMode":["STREAMING","BATCH"],"clusterConfig.useYarnKerberosKeytab":[true]},"dependsOn":"","group":"CLUSTER","fieldName":"yarnKerberosPrincipal","name":"clusterConfig.yarnKerberosPrincipal","type":"STRING","defaultValue":"name@DOMAIN","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":1200,"connectionType":"","displayMode":"BASIC","description":"Name of the Kerberos principal used to launch the Spark application for the pipeline. Must be present in the keytab specified above.","required":true,"label":"YARN Kerberos Principal","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"executionMode":["STREAMING","BATCH"]},"dependsOn":"","group":"ADVANCED","fieldName":"callbackUrl","name":"clusterConfig.callbackUrl","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":5,"connectionType":"","displayMode":"ADVANCED","description":"Optional callback URL for the Spark cluster to use to contact this Transformer instance. Use this format: http://<hostname>:<port>","required":false,"label":"Cluster Callback URL","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["DATABRICKS"],"executionMode":["STREAMING","BATCH"]},"dependsOn":"","group":"CLUSTER","fieldName":"baseUrl","name":"databricksConfig.baseUrl","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":105,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"URL to connect to Databricks","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["DATABRICKS"],"executionMode":["STREAMING","BATCH"]},"dependsOn":"","group":"CLUSTER","fieldName":"credentialType","name":"databricksConfig.credentialType","type":"MODEL","defaultValue":"TOKEN","max":9223372036854776000,"model":{"values":["PASSWORD","TOKEN"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.datacollector.config.CredentialTypeChooserValues","filteringConfig":"","labels":["Username/Password","Token"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":106,"connectionType":"","displayMode":"BASIC","description":"Type of credential to use to connect to Databricks","required":true,"label":"Credential Type","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["DATABRICKS"],"executionMode":["STREAMING","BATCH"],"databricksConfig.credentialType":["PASSWORD"]},"dependsOn":"","group":"CLUSTER","fieldName":"username","name":"databricksConfig.username","type":"CREDENTIAL","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63","65","66","67","68"],"elConstantDefinitionsIdx":["64"],"displayPosition":107,"connectionType":"","displayMode":"BASIC","description":"Databricks user name","required":true,"label":"Username","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["DATABRICKS"],"executionMode":["STREAMING","BATCH"],"databricksConfig.credentialType":["PASSWORD"]},"dependsOn":"","group":"CLUSTER","fieldName":"password","name":"databricksConfig.password","type":"CREDENTIAL","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63","65","66","67","68"],"elConstantDefinitionsIdx":["64"],"displayPosition":108,"connectionType":"","displayMode":"BASIC","description":"Password for the account","required":true,"label":"Password","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["DATABRICKS"],"executionMode":["STREAMING","BATCH"],"databricksConfig.credentialType":["TOKEN"]},"dependsOn":"","group":"CLUSTER","fieldName":"token","name":"databricksConfig.token","type":"CREDENTIAL","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63","65","66","67","68"],"elConstantDefinitionsIdx":["64"],"displayPosition":109,"connectionType":"","displayMode":"BASIC","description":"Personal access token for the account","required":true,"label":"Token","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["DATABRICKS"],"executionMode":["STREAMING","BATCH"]},"dependsOn":"","group":"CLUSTER","fieldName":"provisionNewCluster","name":"databricksConfig.provisionNewCluster","type":"BOOLEAN","defaultValue":true,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":110,"connectionType":"","displayMode":"BASIC","description":"Provisions a new cluster when the pipeline starts","required":true,"label":"Provision a New Cluster","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"databricksConfig.provisionNewCluster":[false],"clusterConfig.clusterType":["DATABRICKS"],"executionMode":["STREAMING","BATCH"]},"dependsOn":"","group":"CLUSTER","fieldName":"clusterId","name":"databricksConfig.clusterId","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":111,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Cluster ID","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"databricksConfig.provisionNewCluster":[true],"clusterConfig.clusterType":["DATABRICKS"],"executionMode":["STREAMING","BATCH"]},"dependsOn":"","group":"CLUSTER","fieldName":"clusterConfig","name":"databricksConfig.clusterConfig","type":"TEXT","defaultValue":"{\n \"num_workers\": 8,\n \"spark_version\": \"5.3.x-scala2.11\",\n \"node_type_id\": \"i3.xlarge\"\n}","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":112,"connectionType":"","displayMode":"ADVANCED","description":"Configuration for the Databricks cluster","required":false,"label":"Cluster Configuration","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"databricksConfig.provisionNewCluster":[true],"clusterConfig.clusterType":["DATABRICKS"],"executionMode":["STREAMING","BATCH"]},"dependsOn":"","group":"CLUSTER","fieldName":"terminateCluster","name":"databricksConfig.terminateCluster","type":"BOOLEAN","defaultValue":false,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":113,"connectionType":"","displayMode":"ADVANCED","description":"Terminates the cluster when the pipeline stops","required":true,"label":"Terminate Cluster","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["SQL_SERVER_BIG_DATA_CLUSTER","AZURE_HD_INSIGHT"],"executionMode":["STREAMING","BATCH"]},"dependsOn":"","group":"CLUSTER","fieldName":"baseUrl","name":"livyConfig.baseUrl","type":"STRING","defaultValue":"https://localhost:30443/gateway/default/livy/v1/","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":105,"connectionType":"","displayMode":"BASIC","description":"URL to connect to the Livy Server","required":true,"label":"Livy Endpoint","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["SQL_SERVER_BIG_DATA_CLUSTER","AZURE_HD_INSIGHT"],"executionMode":["STREAMING","BATCH"]},"dependsOn":"","group":"CLUSTER","fieldName":"username","name":"livyConfig.username","type":"CREDENTIAL","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63","65","66","67","68"],"elConstantDefinitionsIdx":["64"],"displayPosition":107,"connectionType":"","displayMode":"BASIC","description":"Livy user name","required":false,"label":"Username","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["SQL_SERVER_BIG_DATA_CLUSTER","AZURE_HD_INSIGHT"],"executionMode":["STREAMING","BATCH"]},"dependsOn":"","group":"CLUSTER","fieldName":"password","name":"livyConfig.password","type":"CREDENTIAL","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63","65","66","67","68"],"elConstantDefinitionsIdx":["64"],"displayPosition":108,"connectionType":"","displayMode":"BASIC","description":"Password for the account","required":false,"label":"Password","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"executionMode":["EMR_BATCH"]},"dependsOn":"","group":"CLUSTER","fieldName":"sdcEmrConnectionSelection","name":"sdcEmrConnectionSelection","type":"MODEL","defaultValue":"MANUAL","max":9223372036854776000,"model":{"values":["MANUAL"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.api.ConnectionDef$Constants$ConnectionChooserValues","filteringConfig":"","labels":["None"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":-500,"connectionType":"NOT-IMPLEMENTED-SDC-EMR-CONNECTION","displayMode":"BASIC","description":"","required":true,"label":"Connection","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"sdcEmrConnectionSelection":["MANUAL"],"executionMode":["EMR_BATCH"]},"dependsOn":"","group":"EMR","fieldName":"credentialMode","name":"sdcEmrConnection.awsConfig.credentialMode","type":"MODEL","defaultValue":"WITH_CREDENTIALS","max":9223372036854776000,"model":{"values":["WITH_CREDENTIALS","WITH_IAM_ROLES","WITH_ANONYMOUS_CREDENTIALS"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.stage.lib.aws.AWSCredentialModeChooserValues","filteringConfig":"","labels":["AWS Keys","Instance Profile","None"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":-120,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Authentication Method","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"sdcEmrConnection.awsConfig.credentialMode":["WITH_CREDENTIALS"],"sdcEmrConnectionSelection":["MANUAL"],"executionMode":["EMR_BATCH"]},"dependsOn":"","group":"EMR","fieldName":"awsAccessKeyId","name":"sdcEmrConnection.awsConfig.awsAccessKeyId","type":"CREDENTIAL","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63","65","66","67","68"],"elConstantDefinitionsIdx":["64"],"displayPosition":-110,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Access Key ID","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"sdcEmrConnection.awsConfig.credentialMode":["WITH_CREDENTIALS"],"sdcEmrConnectionSelection":["MANUAL"],"executionMode":["EMR_BATCH"]},"dependsOn":"","group":"EMR","fieldName":"awsSecretAccessKey","name":"sdcEmrConnection.awsConfig.awsSecretAccessKey","type":"CREDENTIAL","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63","65","66","67","68"],"elConstantDefinitionsIdx":["64"],"displayPosition":-100,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Secret Access Key","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"sdcEmrConnection.awsConfig.credentialMode":["WITH_CREDENTIALS","WITH_IAM_ROLES"],"sdcEmrConnection.awsConfig.isAssumeRole":[true],"sdcEmrConnectionSelection":["MANUAL"],"executionMode":["EMR_BATCH"]},"dependsOn":"","group":"EMR","fieldName":"roleARN","name":"sdcEmrConnection.awsConfig.roleARN","type":"CREDENTIAL","defaultValue":"arn:aws:iam::<account-id>:role/role-name","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63","65","66","67","68"],"elConstantDefinitionsIdx":["64"],"displayPosition":-100,"connectionType":"","displayMode":"BASIC","description":"Amazon resource name of the role to assume","required":true,"label":"Role ARN","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"sdcEmrConnection.awsConfig.credentialMode":["WITH_CREDENTIALS","WITH_IAM_ROLES"],"sdcEmrConnection.awsConfig.isAssumeRole":[true],"sdcEmrConnectionSelection":["MANUAL"],"executionMode":["EMR_BATCH"]},"dependsOn":"","group":"EMR","fieldName":"roleSessionName","name":"sdcEmrConnection.awsConfig.roleSessionName","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":-100,"connectionType":"","displayMode":"BASIC","description":"Optional name for the session created by assuming a role. Overrides the default unique identifier.","required":false,"label":"Role Session Name","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":3600,"dependsOnMap":{"sdcEmrConnection.awsConfig.credentialMode":["WITH_CREDENTIALS","WITH_IAM_ROLES"],"sdcEmrConnection.awsConfig.isAssumeRole":[true],"sdcEmrConnectionSelection":["MANUAL"],"executionMode":["EMR_BATCH"]},"dependsOn":"","group":"EMR","fieldName":"sessionDuration","name":"sdcEmrConnection.awsConfig.sessionDuration","type":"NUMBER","defaultValue":3600,"max":43200,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":-100,"connectionType":"","displayMode":"BASIC","description":"Maximum time for each session. Use a value in the following range: 3600 - 43200. The session is refreshed if the pipeline continues to run.","required":true,"label":"Session Timeout (secs)","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"sdcEmrConnection.awsConfig.credentialMode":["WITH_CREDENTIALS","WITH_IAM_ROLES"],"sdcEmrConnection.awsConfig.isAssumeRole":[true],"sdcEmrConnectionSelection":["MANUAL"],"executionMode":["EMR_BATCH"]},"dependsOn":"","group":"EMR","fieldName":"setSessionTags","name":"sdcEmrConnection.awsConfig.setSessionTags","type":"BOOLEAN","defaultValue":true,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":-100,"connectionType":"","displayMode":"ADVANCED","description":"Specify session tags in the IAM policy to require that the currently logged in user who starts the pipeline has access to assume the specified role","required":true,"label":"Set Session Tags","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"sdcEmrConnectionSelection":["MANUAL"],"executionMode":["EMR_BATCH"]},"dependsOn":"","group":"EMR","fieldName":"region","name":"sdcEmrConnection.region","type":"MODEL","defaultValue":"US_WEST_2","max":9223372036854776000,"model":{"values":["US_EAST_2","US_EAST_1","US_WEST_1","US_WEST_2","US_GOV_WEST_1","AP_NORTHEAST_1","AP_NORTHEAST_2","AP_NORTHEAST_3","AP_SOUTH_1","AP_SOUTHEAST_1","AP_SOUTHEAST_2","CA_CENTRAL_1","CN_NORTH_1","CN_NORTHWEST_1","EU_CENTRAL_1","EU_WEST_1","EU_WEST_2","EU_WEST_3","SA_EAST_1","OTHER"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.stage.lib.aws.AwsRegionChooserValues","filteringConfig":"","labels":["US East (Ohio) us-east-2","US East (N. Virginia) us-east-1","US West (N. California) us-west-1","US West (Oregon) us-west-2","AWS GovCloud (US)","Aisa Pacific (Tokyo) ap-northeast-1","Asia Pacific (Seoul) ap-northeast-2","Asia Pacific (Osaka-Local) ap-northeast-3","Asia Pacific (Mumbai) ap-south-1","Asia Pacific (Singapore) ap-southeast-1","Asia Pacific (Sydney) ap-southeast-2","Canada (Central) ca-central-1","China (Beijing) cn-north-1","China (Ningxia) cn-northwest-1","EU (Frankfurt) eu-central-1","EU (Ireland) eu-west-1","EU (London) eu-west-2","EU (Paris) eu-west-3","South America (São Paulo) sa-east-1","Other - specify"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":1000,"connectionType":"","displayMode":"BASIC","description":"The AWS region for EMR.","required":true,"label":"AWS Region","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"sdcEmrConnection.region":["OTHER"],"sdcEmrConnectionSelection":["MANUAL"],"executionMode":["EMR_BATCH"]},"dependsOn":"","group":"EMR","fieldName":"customRegion","name":"sdcEmrConnection.customRegion","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":1200,"connectionType":"","displayMode":"BASIC","description":"Custom endpoint","required":true,"label":"Endpoint","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"sdcEmrConnectionSelection":["MANUAL"],"executionMode":["EMR_BATCH"]},"dependsOn":"","group":"EMR","fieldName":"s3StagingUri","name":"sdcEmrConnection.s3StagingUri","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":1500,"connectionType":"","displayMode":"BASIC","description":"S3 URI where resources are staged for pipeline execution. Use the format: s3://<path>.","required":true,"label":"S3 Staging URI","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"sdcEmrConnectionSelection":["MANUAL"],"executionMode":["EMR_BATCH"]},"dependsOn":"","group":"EMR","fieldName":"provisionNewCluster","name":"sdcEmrConnection.provisionNewCluster","type":"BOOLEAN","defaultValue":false,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":2000,"connectionType":"","displayMode":"BASIC","description":"Provisions a new cluster when the pipeline starts","required":true,"label":"Provision a New Cluster","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"sdcEmrConnectionSelection":["MANUAL"],"sdcEmrConnection.provisionNewCluster":[false],"executionMode":["EMR_BATCH"]},"dependsOn":"","group":"EMR","fieldName":"clusterId","name":"sdcEmrConnection.clusterId","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":2500,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Cluster ID","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"sdcEmrConnectionSelection":["MANUAL"],"sdcEmrConnection.provisionNewCluster":[true],"executionMode":["EMR_BATCH"]},"dependsOn":"","group":"EMR","fieldName":"emrVersion","name":"sdcEmrConnection.emrVersion","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":3000,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"EMR Version","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"sdcEmrConnectionSelection":["MANUAL"],"sdcEmrConnection.provisionNewCluster":[true],"executionMode":["EMR_BATCH"]},"dependsOn":"","group":"EMR","fieldName":"clusterPrefix","name":"sdcEmrConnection.clusterPrefix","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":3100,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Cluster Name Prefix","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"sdcEmrConnectionSelection":["MANUAL"],"sdcEmrConnection.provisionNewCluster":[true],"executionMode":["EMR_BATCH"]},"dependsOn":"","group":"EMR","fieldName":"terminateCluster","name":"sdcEmrConnection.terminateCluster","type":"BOOLEAN","defaultValue":true,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":3200,"connectionType":"","displayMode":"ADVANCED","description":"Terminates the cluster when the pipeline stops","required":true,"label":"Terminate Cluster","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"sdcEmrConnectionSelection":["MANUAL"],"sdcEmrConnection.provisionNewCluster":[true],"executionMode":["EMR_BATCH"]},"dependsOn":"","group":"EMR","fieldName":"loggingEnabled","name":"sdcEmrConnection.loggingEnabled","type":"BOOLEAN","defaultValue":true,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":3300,"connectionType":"","displayMode":"ADVANCED","description":"Copies cluster log files to the specified S3 location. Use to enable continued access to log files.","required":true,"label":"Logging Enabled","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"sdcEmrConnectionSelection":["MANUAL"],"sdcEmrConnection.provisionNewCluster":[true],"executionMode":["EMR_BATCH"],"sdcEmrConnection.loggingEnabled":[true]},"dependsOn":"","group":"EMR","fieldName":"s3LogUri","name":"sdcEmrConnection.s3LogUri","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":3500,"connectionType":"","displayMode":"BASIC","description":"S3 URI to store log files. Use the format: s3://<path>.","required":true,"label":"S3 Log URI","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"sdcEmrConnectionSelection":["MANUAL"],"sdcEmrConnection.provisionNewCluster":[true],"executionMode":["EMR_BATCH"]},"dependsOn":"","group":"EMR","fieldName":"serviceRole","name":"sdcEmrConnection.serviceRole","type":"STRING","defaultValue":"EMR_DefaultRole","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":4000,"connectionType":"","displayMode":"ADVANCED","description":"EMR role used by the cluster when provisioning resources and performing other service-level tasks","required":true,"label":"Service Role","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"sdcEmrConnectionSelection":["MANUAL"],"sdcEmrConnection.provisionNewCluster":[true],"executionMode":["EMR_BATCH"]},"dependsOn":"","group":"EMR","fieldName":"jobFlowRole","name":"sdcEmrConnection.jobFlowRole","type":"STRING","defaultValue":"EMR_EC2_DefaultRole","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":4100,"connectionType":"","displayMode":"ADVANCED","description":"EMR role for EC2. Used by EC2 instances within the cluster.","required":true,"label":"Job Flow Role","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"sdcEmrConnectionSelection":["MANUAL"],"sdcEmrConnection.provisionNewCluster":[true],"executionMode":["EMR_BATCH"]},"dependsOn":"","group":"EMR","fieldName":"visibleToAllUsers","name":"sdcEmrConnection.visibleToAllUsers","type":"BOOLEAN","defaultValue":true,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":4200,"connectionType":"","displayMode":"ADVANCED","description":"","required":false,"label":"Visible to All Users","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"sdcEmrConnectionSelection":["MANUAL"],"sdcEmrConnection.provisionNewCluster":[true],"executionMode":["EMR_BATCH"]},"dependsOn":"","group":"EMR","fieldName":"ec2SubnetId","name":"sdcEmrConnection.ec2SubnetId","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":4500,"connectionType":"","displayMode":"BASIC","description":"ID of the EC2 subnet to launch the cluster in","required":true,"label":"EC2 Subnet ID","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"sdcEmrConnectionSelection":["MANUAL"],"sdcEmrConnection.provisionNewCluster":[true],"executionMode":["EMR_BATCH"]},"dependsOn":"","group":"EMR","fieldName":"masterSecurityGroup","name":"sdcEmrConnection.masterSecurityGroup","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":4700,"connectionType":"","displayMode":"BASIC","description":"ID of the security group for the master node","required":true,"label":"Master Security Group","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"sdcEmrConnectionSelection":["MANUAL"],"sdcEmrConnection.provisionNewCluster":[true],"executionMode":["EMR_BATCH"]},"dependsOn":"","group":"EMR","fieldName":"slaveSecurityGroup","name":"sdcEmrConnection.slaveSecurityGroup","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":4800,"connectionType":"","displayMode":"BASIC","description":"ID of the security group for slave nodes","required":true,"label":"Slave Security Group","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"sdcEmrConnectionSelection":["MANUAL"],"sdcEmrConnection.provisionNewCluster":[true],"executionMode":["EMR_BATCH"]},"dependsOn":"","group":"EMR","fieldName":"serviceAccessSecurityGroup","name":"sdcEmrConnection.serviceAccessSecurityGroup","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":4900,"connectionType":"","displayMode":"BASIC","description":"ID of the security group for the Amazon EMR service to access clusters in VPC private subnets","required":false,"label":"Service Access Security Group","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":2,"dependsOnMap":{"sdcEmrConnectionSelection":["MANUAL"],"sdcEmrConnection.provisionNewCluster":[true],"executionMode":["EMR_BATCH"]},"dependsOn":"","group":"EMR","fieldName":"instanceCount","name":"sdcEmrConnection.instanceCount","type":"NUMBER","defaultValue":2,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":5000,"connectionType":"","displayMode":"ADVANCED","description":"EC2 instances in the cluster. Minimum of 2. Adding instances for multiple partitions can improve performance","required":true,"label":"Instance Count","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":1,"dependsOnMap":{"sdcEmrConnectionSelection":["MANUAL"],"sdcEmrConnection.provisionNewCluster":[true],"executionMode":["EMR_BATCH"]},"dependsOn":"","group":"EMR","fieldName":"stepConcurrency","name":"sdcEmrConnection.stepConcurrency","type":"NUMBER","defaultValue":1,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":5000,"connectionType":"","displayMode":"ADVANCED","description":"Number of EMR steps this cluster can run concurrently","required":true,"label":"Step Concurrency","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"sdcEmrConnectionSelection":["MANUAL"],"sdcEmrConnection.provisionNewCluster":[true],"executionMode":["EMR_BATCH"]},"dependsOn":"","group":"EMR","fieldName":"masterInstanceType","name":"sdcEmrConnection.masterInstanceType","type":"MODEL","defaultValue":null,"max":9223372036854776000,"model":{"values":["M4_LARGE","M4_XLARGE","M4_2XLARGE","M4_4XLARGE","M4_10XLARGE","M4_16XLARGE","C4_LARGE","C4_XLARGE","C4_2XLARGE","C4_4XLARGE","C4_8XLARGE","R3_XLARGE","R3_2XLARGE","R3_4XLARGE","R3_8XLARGE","R4_XLARGE","R4_2XLARGE","R4_4XLARGE","R4_8XLARGE","R4_16XLARGE","I3_XLARGE","I3_2XLARGE","I3_4XLARGE","I3_8XLARGE","I3_16XLARGE","D2_XLARGE","D2_2XLARGE","D2_4XLARGE","D2_8XLARGE","P2_XLARGE","P2_8XLARGE","P2_16XLARGE","P3_2XLARGE","P3_8XLARGE","P3_16XLARGE","OTHER"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.lib.aws.AwsInstanceTypeChooserValues","filteringConfig":"","labels":["m4.large","m4.xlarge","m4.2xlarge","m4.4xlarge","m4.10xlarge","m4.16xlarge","c4.large","c4.xlarge","c4.2xlarge","c4.4xlarge","c4.8xlarge","r3.xlarge","r3.2xlarge","r3.4xlarge","r3.8xlarge","r4.xlarge","r4.2xlarge","r4.4xlarge","r4.8xlarge","r4.16xlarge","i3.xlarge","i3.2xlarge","i3.4xlarge","i3.8xlarge","i3.16xlarge","d2.xlarge","d2.2xlarge","d2.4xlarge","d2.8xlarge","p2.xlarge","p2.8xlarge","p2.16xlarge","p3.2xlarge","p3.8xlarge","p3.16xlarge","Custom"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":7000,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Master Instance Type","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"sdcEmrConnection.masterInstanceType":["OTHER"],"sdcEmrConnectionSelection":["MANUAL"],"sdcEmrConnection.provisionNewCluster":[true],"executionMode":["EMR_BATCH"]},"dependsOn":"","group":"EMR","fieldName":"masterInstanceTypeCustom","name":"sdcEmrConnection.masterInstanceTypeCustom","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":7100,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Master Instance Type (Custom)","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"sdcEmrConnectionSelection":["MANUAL"],"sdcEmrConnection.provisionNewCluster":[true],"executionMode":["EMR_BATCH"]},"dependsOn":"","group":"EMR","fieldName":"slaveInstanceType","name":"sdcEmrConnection.slaveInstanceType","type":"MODEL","defaultValue":null,"max":9223372036854776000,"model":{"values":["M4_LARGE","M4_XLARGE","M4_2XLARGE","M4_4XLARGE","M4_10XLARGE","M4_16XLARGE","C4_LARGE","C4_XLARGE","C4_2XLARGE","C4_4XLARGE","C4_8XLARGE","R3_XLARGE","R3_2XLARGE","R3_4XLARGE","R3_8XLARGE","R4_XLARGE","R4_2XLARGE","R4_4XLARGE","R4_8XLARGE","R4_16XLARGE","I3_XLARGE","I3_2XLARGE","I3_4XLARGE","I3_8XLARGE","I3_16XLARGE","D2_XLARGE","D2_2XLARGE","D2_4XLARGE","D2_8XLARGE","P2_XLARGE","P2_8XLARGE","P2_16XLARGE","P3_2XLARGE","P3_8XLARGE","P3_16XLARGE","OTHER"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.lib.aws.AwsInstanceTypeChooserValues","filteringConfig":"","labels":["m4.large","m4.xlarge","m4.2xlarge","m4.4xlarge","m4.10xlarge","m4.16xlarge","c4.large","c4.xlarge","c4.2xlarge","c4.4xlarge","c4.8xlarge","r3.xlarge","r3.2xlarge","r3.4xlarge","r3.8xlarge","r4.xlarge","r4.2xlarge","r4.4xlarge","r4.8xlarge","r4.16xlarge","i3.xlarge","i3.2xlarge","i3.4xlarge","i3.8xlarge","i3.16xlarge","d2.xlarge","d2.2xlarge","d2.4xlarge","d2.8xlarge","p2.xlarge","p2.8xlarge","p2.16xlarge","p3.2xlarge","p3.8xlarge","p3.16xlarge","Custom"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":8000,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Slave Instance Type","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"sdcEmrConnection.slaveInstanceType":["OTHER"],"sdcEmrConnectionSelection":["MANUAL"],"sdcEmrConnection.provisionNewCluster":[true],"executionMode":["EMR_BATCH"]},"dependsOn":"","group":"EMR","fieldName":"slaveInstanceTypeCustom","name":"sdcEmrConnection.slaveInstanceTypeCustom","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":8100,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Slave Instance Type (Custom)","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"sdcEmrConnectionSelection":["MANUAL"],"sdcEmrConnection.provisionNewCluster":[true],"executionMode":["EMR_BATCH"],"sdcEmrConnection.loggingEnabled":[true]},"dependsOn":"","group":"EMR","fieldName":"enableEMRDebugging","name":"enableEMRDebugging","type":"BOOLEAN","defaultValue":true,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":3310,"connectionType":"","displayMode":"ADVANCED","description":"Enable console debugging in EMR","required":true,"label":"Enable Debugging","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["EMR"],"executionMode":["STREAMING","BATCH"]},"dependsOn":"","group":"CLUSTER","fieldName":"transformerEmrConnectionSelection","name":"transformerEmrConnectionSelection","type":"MODEL","defaultValue":"MANUAL","max":9223372036854776000,"model":{"values":["MANUAL"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.api.ConnectionDef$Constants$ConnectionChooserValues","filteringConfig":"","labels":["None"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":-600,"connectionType":"STREAMSETS_AWS_EMR_CLUSTER","displayMode":"BASIC","description":"","required":true,"label":"Connection","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["EMR"],"executionMode":["STREAMING","BATCH"],"transformerEmrConnectionSelection":["MANUAL"]},"dependsOn":"","group":"CLUSTER","fieldName":"credentialMode","name":"transformerEmrConnection.awsConfig.credentialMode","type":"MODEL","defaultValue":"WITH_CREDENTIALS","max":9223372036854776000,"model":{"values":["WITH_CREDENTIALS","WITH_IAM_ROLES","WITH_ANONYMOUS_CREDENTIALS"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.stage.lib.aws.AWSCredentialModeChooserValues","filteringConfig":"","labels":["AWS Keys","Instance Profile","None"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":-120,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Authentication Method","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["EMR"],"executionMode":["STREAMING","BATCH"],"transformerEmrConnection.awsConfig.credentialMode":["WITH_CREDENTIALS"],"transformerEmrConnectionSelection":["MANUAL"]},"dependsOn":"","group":"CLUSTER","fieldName":"awsAccessKeyId","name":"transformerEmrConnection.awsConfig.awsAccessKeyId","type":"CREDENTIAL","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63","65","66","67","68"],"elConstantDefinitionsIdx":["64"],"displayPosition":-110,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Access Key ID","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["EMR"],"executionMode":["STREAMING","BATCH"],"transformerEmrConnection.awsConfig.credentialMode":["WITH_CREDENTIALS"],"transformerEmrConnectionSelection":["MANUAL"]},"dependsOn":"","group":"CLUSTER","fieldName":"awsSecretAccessKey","name":"transformerEmrConnection.awsConfig.awsSecretAccessKey","type":"CREDENTIAL","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63","65","66","67","68"],"elConstantDefinitionsIdx":["64"],"displayPosition":-100,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Secret Access Key","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"transformerEmrConnection.awsConfig.isAssumeRole":[true],"clusterConfig.clusterType":["EMR"],"executionMode":["STREAMING","BATCH"],"transformerEmrConnectionSelection":["MANUAL"],"transformerEmrConnection.awsConfig.credentialMode":["WITH_CREDENTIALS","WITH_IAM_ROLES"]},"dependsOn":"","group":"CLUSTER","fieldName":"roleARN","name":"transformerEmrConnection.awsConfig.roleARN","type":"CREDENTIAL","defaultValue":"arn:aws:iam::<account-id>:role/role-name","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63","65","66","67","68"],"elConstantDefinitionsIdx":["64"],"displayPosition":-100,"connectionType":"","displayMode":"BASIC","description":"Amazon resource name of the role to assume","required":true,"label":"Role ARN","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"transformerEmrConnection.awsConfig.isAssumeRole":[true],"clusterConfig.clusterType":["EMR"],"executionMode":["STREAMING","BATCH"],"transformerEmrConnectionSelection":["MANUAL"],"transformerEmrConnection.awsConfig.credentialMode":["WITH_CREDENTIALS","WITH_IAM_ROLES"]},"dependsOn":"","group":"CLUSTER","fieldName":"roleSessionName","name":"transformerEmrConnection.awsConfig.roleSessionName","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":-100,"connectionType":"","displayMode":"BASIC","description":"Optional name for the session created by assuming a role. Overrides the default unique identifier.","required":false,"label":"Role Session Name","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":3600,"dependsOnMap":{"transformerEmrConnection.awsConfig.isAssumeRole":[true],"clusterConfig.clusterType":["EMR"],"executionMode":["STREAMING","BATCH"],"transformerEmrConnectionSelection":["MANUAL"],"transformerEmrConnection.awsConfig.credentialMode":["WITH_CREDENTIALS","WITH_IAM_ROLES"]},"dependsOn":"","group":"CLUSTER","fieldName":"sessionDuration","name":"transformerEmrConnection.awsConfig.sessionDuration","type":"NUMBER","defaultValue":3600,"max":43200,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":-100,"connectionType":"","displayMode":"BASIC","description":"Maximum time for each session. Use a value in the following range: 3600 - 43200. The session is refreshed if the pipeline continues to run.","required":true,"label":"Session Timeout (secs)","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"transformerEmrConnection.awsConfig.isAssumeRole":[true],"clusterConfig.clusterType":["EMR"],"executionMode":["STREAMING","BATCH"],"transformerEmrConnectionSelection":["MANUAL"],"transformerEmrConnection.awsConfig.credentialMode":["WITH_CREDENTIALS","WITH_IAM_ROLES"]},"dependsOn":"","group":"CLUSTER","fieldName":"setSessionTags","name":"transformerEmrConnection.awsConfig.setSessionTags","type":"BOOLEAN","defaultValue":true,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":-100,"connectionType":"","displayMode":"ADVANCED","description":"Specify session tags in the IAM policy to require that the currently logged in user who starts the pipeline has access to assume the specified role","required":true,"label":"Set Session Tags","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["EMR"],"executionMode":["STREAMING","BATCH"],"transformerEmrConnectionSelection":["MANUAL"]},"dependsOn":"","group":"CLUSTER","fieldName":"region","name":"transformerEmrConnection.region","type":"MODEL","defaultValue":"US_WEST_2","max":9223372036854776000,"model":{"values":["US_EAST_2","US_EAST_1","US_WEST_1","US_WEST_2","US_GOV_WEST_1","AP_NORTHEAST_1","AP_NORTHEAST_2","AP_NORTHEAST_3","AP_SOUTH_1","AP_SOUTHEAST_1","AP_SOUTHEAST_2","CA_CENTRAL_1","CN_NORTH_1","CN_NORTHWEST_1","EU_CENTRAL_1","EU_WEST_1","EU_WEST_2","EU_WEST_3","SA_EAST_1","OTHER"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.stage.lib.aws.AwsRegionChooserValues","filteringConfig":"","labels":["US East (Ohio) us-east-2","US East (N. Virginia) us-east-1","US West (N. California) us-west-1","US West (Oregon) us-west-2","AWS GovCloud (US)","Aisa Pacific (Tokyo) ap-northeast-1","Asia Pacific (Seoul) ap-northeast-2","Asia Pacific (Osaka-Local) ap-northeast-3","Asia Pacific (Mumbai) ap-south-1","Asia Pacific (Singapore) ap-southeast-1","Asia Pacific (Sydney) ap-southeast-2","Canada (Central) ca-central-1","China (Beijing) cn-north-1","China (Ningxia) cn-northwest-1","EU (Frankfurt) eu-central-1","EU (Ireland) eu-west-1","EU (London) eu-west-2","EU (Paris) eu-west-3","South America (São Paulo) sa-east-1","Other - specify"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":1000,"connectionType":"","displayMode":"BASIC","description":"The AWS region for EMR.","required":true,"label":"AWS Region","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"transformerEmrConnection.region":["OTHER"],"clusterConfig.clusterType":["EMR"],"executionMode":["STREAMING","BATCH"],"transformerEmrConnectionSelection":["MANUAL"]},"dependsOn":"","group":"CLUSTER","fieldName":"customRegion","name":"transformerEmrConnection.customRegion","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":1200,"connectionType":"","displayMode":"BASIC","description":"Custom endpoint","required":true,"label":"Endpoint","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["EMR"],"executionMode":["STREAMING","BATCH"],"transformerEmrConnectionSelection":["MANUAL"]},"dependsOn":"","group":"CLUSTER","fieldName":"s3StagingUri","name":"transformerEmrConnection.s3StagingUri","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":1500,"connectionType":"","displayMode":"BASIC","description":"S3 URI where resources are staged for pipeline execution. Use the format: s3://<path>.","required":true,"label":"S3 Staging URI","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["EMR"],"executionMode":["STREAMING","BATCH"],"transformerEmrConnectionSelection":["MANUAL"]},"dependsOn":"","group":"CLUSTER","fieldName":"provisionNewCluster","name":"transformerEmrConnection.provisionNewCluster","type":"BOOLEAN","defaultValue":false,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":2000,"connectionType":"","displayMode":"BASIC","description":"Provisions a new cluster when the pipeline starts","required":true,"label":"Provision a New Cluster","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["EMR"],"executionMode":["STREAMING","BATCH"],"transformerEmrConnectionSelection":["MANUAL"],"transformerEmrConnection.provisionNewCluster":[true]},"dependsOn":"","group":"CLUSTER","fieldName":"defineBootstrapActions","name":"transformerEmrConnection.defineBootstrapActions","type":"BOOLEAN","defaultValue":false,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":2100,"connectionType":"","displayMode":"BASIC","description":"Enables actions to be executed on bootstraping a pipeline","required":false,"label":"Define Bootstrap Actions","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"transformerEmrConnection.defineBootstrapActions":[true],"clusterConfig.clusterType":["EMR"],"executionMode":["STREAMING","BATCH"],"transformerEmrConnectionSelection":["MANUAL"],"transformerEmrConnection.provisionNewCluster":[true]},"dependsOn":"","group":"CLUSTER","fieldName":"bootstrapActionSource","name":"transformerEmrConnection.bootstrapActionSource","type":"MODEL","defaultValue":"IN_S3","max":9223372036854776000,"model":{"values":["IN_S3","IN_PIPELINE"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.stage.common.emr.BootstrapActionSourceChooser","filteringConfig":"","labels":["Executable Files in S3","Defined in Pipeline"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":2110,"connectionType":"","displayMode":"BASIC","description":"Defines where bootstrap action should be taken from","required":true,"label":"Bootstrap Actions Source","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"transformerEmrConnection.bootstrapActionSource":["IN_S3"],"transformerEmrConnection.defineBootstrapActions":[true],"clusterConfig.clusterType":["EMR"],"executionMode":["STREAMING","BATCH"],"transformerEmrConnectionSelection":["MANUAL"],"transformerEmrConnection.provisionNewCluster":[true]},"dependsOn":"","group":"CLUSTER","fieldName":"bootstrapActions","name":"transformerEmrConnection.bootstrapActions","type":"MODEL","defaultValue":[],"max":9223372036854776000,"model":{"values":null,"configDefinitions":[{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"","fieldName":"location","name":"location","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":2121,"connectionType":"","displayMode":"BASIC","description":"S3 URI where the action script is located","required":true,"label":"Location","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"","fieldName":"arguments","name":"arguments","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":2122,"connectionType":"","displayMode":"BASIC","description":"Arguments of the action script","required":false,"label":"Arguments","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"}],"modelType":"LIST_BEAN","valuesProviderClass":null,"filteringConfig":null,"labels":null},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":2120,"connectionType":"","displayMode":"BASIC","description":"S3 URIs of bootstrap actions and their arguments","required":true,"label":"Bootstrap Actions","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"transformerEmrConnection.bootstrapActionSource":["IN_PIPELINE"],"transformerEmrConnection.defineBootstrapActions":[true],"clusterConfig.clusterType":["EMR"],"executionMode":["STREAMING","BATCH"],"transformerEmrConnectionSelection":["MANUAL"],"transformerEmrConnection.provisionNewCluster":[true]},"dependsOn":"","group":"CLUSTER","fieldName":"bootstrapActionScripts","name":"transformerEmrConnection.bootstrapActionScripts","type":"MODEL","defaultValue":[],"max":9223372036854776000,"model":{"values":null,"configDefinitions":[{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"","fieldName":"script","name":"script","type":"TEXT","defaultValue":null,"max":9223372036854776000,"model":null,"lines":5,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":2131,"connectionType":"","displayMode":"BASIC","description":"Content of a bootstrap action script","required":true,"label":"Scripts","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"}],"modelType":"LIST_BEAN","valuesProviderClass":null,"filteringConfig":null,"labels":null},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":2130,"connectionType":"","displayMode":"BASIC","description":"Contents of bootstrap actions","required":true,"label":"Bootstrap Action Scripts","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["EMR"],"executionMode":["STREAMING","BATCH"],"transformerEmrConnectionSelection":["MANUAL"],"transformerEmrConnection.provisionNewCluster":[false]},"dependsOn":"","group":"CLUSTER","fieldName":"clusterId","name":"transformerEmrConnection.clusterId","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":2500,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Cluster ID","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["EMR"],"executionMode":["STREAMING","BATCH"],"transformerEmrConnectionSelection":["MANUAL"],"transformerEmrConnection.provisionNewCluster":[true]},"dependsOn":"","group":"CLUSTER","fieldName":"emrVersion","name":"transformerEmrConnection.emrVersion","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":3000,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"EMR Version","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["EMR"],"executionMode":["STREAMING","BATCH"],"transformerEmrConnectionSelection":["MANUAL"],"transformerEmrConnection.provisionNewCluster":[true]},"dependsOn":"","group":"CLUSTER","fieldName":"clusterPrefix","name":"transformerEmrConnection.clusterPrefix","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":3100,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Cluster Name Prefix","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["EMR"],"executionMode":["STREAMING","BATCH"],"transformerEmrConnectionSelection":["MANUAL"],"transformerEmrConnection.provisionNewCluster":[true]},"dependsOn":"","group":"CLUSTER","fieldName":"terminateCluster","name":"transformerEmrConnection.terminateCluster","type":"BOOLEAN","defaultValue":true,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":3200,"connectionType":"","displayMode":"ADVANCED","description":"Terminates the cluster when the pipeline stops","required":true,"label":"Terminate Cluster","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["EMR"],"executionMode":["STREAMING","BATCH"],"transformerEmrConnectionSelection":["MANUAL"],"transformerEmrConnection.provisionNewCluster":[true]},"dependsOn":"","group":"CLUSTER","fieldName":"loggingEnabled","name":"transformerEmrConnection.loggingEnabled","type":"BOOLEAN","defaultValue":true,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":3300,"connectionType":"","displayMode":"ADVANCED","description":"Copies cluster log files to the specified S3 location. Use to enable continued access to log files.","required":true,"label":"Logging Enabled","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"transformerEmrConnection.loggingEnabled":[true],"clusterConfig.clusterType":["EMR"],"executionMode":["STREAMING","BATCH"],"transformerEmrConnectionSelection":["MANUAL"],"transformerEmrConnection.provisionNewCluster":[true]},"dependsOn":"","group":"CLUSTER","fieldName":"s3LogUri","name":"transformerEmrConnection.s3LogUri","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":3500,"connectionType":"","displayMode":"BASIC","description":"S3 URI to store log files. Use the format: s3://<path>.","required":true,"label":"S3 Log URI","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["EMR"],"executionMode":["STREAMING","BATCH"],"transformerEmrConnectionSelection":["MANUAL"],"transformerEmrConnection.provisionNewCluster":[true]},"dependsOn":"","group":"CLUSTER","fieldName":"serviceRole","name":"transformerEmrConnection.serviceRole","type":"STRING","defaultValue":"EMR_DefaultRole","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":4000,"connectionType":"","displayMode":"ADVANCED","description":"EMR role used by the cluster when provisioning resources and performing other service-level tasks","required":true,"label":"Service Role","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["EMR"],"executionMode":["STREAMING","BATCH"],"transformerEmrConnectionSelection":["MANUAL"],"transformerEmrConnection.provisionNewCluster":[true]},"dependsOn":"","group":"CLUSTER","fieldName":"jobFlowRole","name":"transformerEmrConnection.jobFlowRole","type":"STRING","defaultValue":"EMR_EC2_DefaultRole","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":4100,"connectionType":"","displayMode":"ADVANCED","description":"EMR role for EC2. Used by EC2 instances within the cluster.","required":true,"label":"Job Flow Role","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["EMR"],"executionMode":["STREAMING","BATCH"],"transformerEmrConnectionSelection":["MANUAL"],"transformerEmrConnection.provisionNewCluster":[true]},"dependsOn":"","group":"CLUSTER","fieldName":"visibleToAllUsers","name":"transformerEmrConnection.visibleToAllUsers","type":"BOOLEAN","defaultValue":true,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":4200,"connectionType":"","displayMode":"ADVANCED","description":"","required":false,"label":"Visible to All Users","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["EMR"],"executionMode":["STREAMING","BATCH"],"transformerEmrConnectionSelection":["MANUAL"],"transformerEmrConnection.provisionNewCluster":[true]},"dependsOn":"","group":"CLUSTER","fieldName":"ec2SubnetId","name":"transformerEmrConnection.ec2SubnetId","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":4500,"connectionType":"","displayMode":"BASIC","description":"ID of the EC2 subnet to launch the cluster in","required":true,"label":"EC2 Subnet ID","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["EMR"],"executionMode":["STREAMING","BATCH"],"transformerEmrConnectionSelection":["MANUAL"],"transformerEmrConnection.provisionNewCluster":[true]},"dependsOn":"","group":"CLUSTER","fieldName":"masterSecurityGroup","name":"transformerEmrConnection.masterSecurityGroup","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":4700,"connectionType":"","displayMode":"BASIC","description":"ID of the security group for the master node","required":true,"label":"Master Security Group","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["EMR"],"executionMode":["STREAMING","BATCH"],"transformerEmrConnectionSelection":["MANUAL"],"transformerEmrConnection.provisionNewCluster":[true]},"dependsOn":"","group":"CLUSTER","fieldName":"slaveSecurityGroup","name":"transformerEmrConnection.slaveSecurityGroup","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":4800,"connectionType":"","displayMode":"BASIC","description":"ID of the security group for slave nodes","required":true,"label":"Slave Security Group","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["EMR"],"executionMode":["STREAMING","BATCH"],"transformerEmrConnectionSelection":["MANUAL"],"transformerEmrConnection.provisionNewCluster":[true]},"dependsOn":"","group":"CLUSTER","fieldName":"serviceAccessSecurityGroup","name":"transformerEmrConnection.serviceAccessSecurityGroup","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":4900,"connectionType":"","displayMode":"BASIC","description":"ID of the security group for the Amazon EMR service to access clusters in VPC private subnets","required":false,"label":"Service Access Security Group","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":2,"dependsOnMap":{"clusterConfig.clusterType":["EMR"],"executionMode":["STREAMING","BATCH"],"transformerEmrConnectionSelection":["MANUAL"],"transformerEmrConnection.provisionNewCluster":[true]},"dependsOn":"","group":"CLUSTER","fieldName":"instanceCount","name":"transformerEmrConnection.instanceCount","type":"NUMBER","defaultValue":2,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":5000,"connectionType":"","displayMode":"ADVANCED","description":"EC2 instances in the cluster. Minimum of 2. Adding instances for multiple partitions can improve performance","required":true,"label":"Instance Count","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":1,"dependsOnMap":{"clusterConfig.clusterType":["EMR"],"executionMode":["STREAMING","BATCH"],"transformerEmrConnectionSelection":["MANUAL"],"transformerEmrConnection.provisionNewCluster":[true]},"dependsOn":"","group":"CLUSTER","fieldName":"stepConcurrency","name":"transformerEmrConnection.stepConcurrency","type":"NUMBER","defaultValue":1,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":5000,"connectionType":"","displayMode":"ADVANCED","description":"Number of EMR steps this cluster can run concurrently","required":true,"label":"Step Concurrency","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["EMR"],"executionMode":["STREAMING","BATCH"],"transformerEmrConnectionSelection":["MANUAL"],"transformerEmrConnection.provisionNewCluster":[true]},"dependsOn":"","group":"CLUSTER","fieldName":"masterInstanceType","name":"transformerEmrConnection.masterInstanceType","type":"MODEL","defaultValue":null,"max":9223372036854776000,"model":{"values":["M4_LARGE","M4_XLARGE","M4_2XLARGE","M4_4XLARGE","M4_10XLARGE","M4_16XLARGE","C4_LARGE","C4_XLARGE","C4_2XLARGE","C4_4XLARGE","C4_8XLARGE","R3_XLARGE","R3_2XLARGE","R3_4XLARGE","R3_8XLARGE","R4_XLARGE","R4_2XLARGE","R4_4XLARGE","R4_8XLARGE","R4_16XLARGE","I3_XLARGE","I3_2XLARGE","I3_4XLARGE","I3_8XLARGE","I3_16XLARGE","D2_XLARGE","D2_2XLARGE","D2_4XLARGE","D2_8XLARGE","P2_XLARGE","P2_8XLARGE","P2_16XLARGE","P3_2XLARGE","P3_8XLARGE","P3_16XLARGE","OTHER"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.lib.aws.AwsInstanceTypeChooserValues","filteringConfig":"","labels":["m4.large","m4.xlarge","m4.2xlarge","m4.4xlarge","m4.10xlarge","m4.16xlarge","c4.large","c4.xlarge","c4.2xlarge","c4.4xlarge","c4.8xlarge","r3.xlarge","r3.2xlarge","r3.4xlarge","r3.8xlarge","r4.xlarge","r4.2xlarge","r4.4xlarge","r4.8xlarge","r4.16xlarge","i3.xlarge","i3.2xlarge","i3.4xlarge","i3.8xlarge","i3.16xlarge","d2.xlarge","d2.2xlarge","d2.4xlarge","d2.8xlarge","p2.xlarge","p2.8xlarge","p2.16xlarge","p3.2xlarge","p3.8xlarge","p3.16xlarge","Custom"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":7000,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Master Instance Type","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"transformerEmrConnection.masterInstanceType":["OTHER"],"clusterConfig.clusterType":["EMR"],"executionMode":["STREAMING","BATCH"],"transformerEmrConnectionSelection":["MANUAL"],"transformerEmrConnection.provisionNewCluster":[true]},"dependsOn":"","group":"CLUSTER","fieldName":"masterInstanceTypeCustom","name":"transformerEmrConnection.masterInstanceTypeCustom","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":7100,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Master Instance Type (Custom)","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["EMR"],"executionMode":["STREAMING","BATCH"],"transformerEmrConnectionSelection":["MANUAL"],"transformerEmrConnection.provisionNewCluster":[true]},"dependsOn":"","group":"CLUSTER","fieldName":"slaveInstanceType","name":"transformerEmrConnection.slaveInstanceType","type":"MODEL","defaultValue":null,"max":9223372036854776000,"model":{"values":["M4_LARGE","M4_XLARGE","M4_2XLARGE","M4_4XLARGE","M4_10XLARGE","M4_16XLARGE","C4_LARGE","C4_XLARGE","C4_2XLARGE","C4_4XLARGE","C4_8XLARGE","R3_XLARGE","R3_2XLARGE","R3_4XLARGE","R3_8XLARGE","R4_XLARGE","R4_2XLARGE","R4_4XLARGE","R4_8XLARGE","R4_16XLARGE","I3_XLARGE","I3_2XLARGE","I3_4XLARGE","I3_8XLARGE","I3_16XLARGE","D2_XLARGE","D2_2XLARGE","D2_4XLARGE","D2_8XLARGE","P2_XLARGE","P2_8XLARGE","P2_16XLARGE","P3_2XLARGE","P3_8XLARGE","P3_16XLARGE","OTHER"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.lib.aws.AwsInstanceTypeChooserValues","filteringConfig":"","labels":["m4.large","m4.xlarge","m4.2xlarge","m4.4xlarge","m4.10xlarge","m4.16xlarge","c4.large","c4.xlarge","c4.2xlarge","c4.4xlarge","c4.8xlarge","r3.xlarge","r3.2xlarge","r3.4xlarge","r3.8xlarge","r4.xlarge","r4.2xlarge","r4.4xlarge","r4.8xlarge","r4.16xlarge","i3.xlarge","i3.2xlarge","i3.4xlarge","i3.8xlarge","i3.16xlarge","d2.xlarge","d2.2xlarge","d2.4xlarge","d2.8xlarge","p2.xlarge","p2.8xlarge","p2.16xlarge","p3.2xlarge","p3.8xlarge","p3.16xlarge","Custom"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":8000,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Slave Instance Type","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"transformerEmrConnection.slaveInstanceType":["OTHER"],"clusterConfig.clusterType":["EMR"],"executionMode":["STREAMING","BATCH"],"transformerEmrConnectionSelection":["MANUAL"],"transformerEmrConnection.provisionNewCluster":[true]},"dependsOn":"","group":"CLUSTER","fieldName":"slaveInstanceTypeCustom","name":"transformerEmrConnection.slaveInstanceTypeCustom","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":8100,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Slave Instance Type (Custom)","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["EMR"],"executionMode":["STREAMING","BATCH"]},"dependsOn":"","group":"CLUSTER","fieldName":"encryption","name":"transformerEMRConfig.encryption","type":"MODEL","defaultValue":"NONE","max":9223372036854776000,"model":{"values":["NONE","S3","KMS"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.transformer.config.SseOptionChooserValues","filteringConfig":"","labels":["None","SSE-S3","SSE-KMS"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":50100,"connectionType":"","displayMode":"ADVANCED","description":"Server-Side Encryption","required":true,"label":"Enable Server-Side Encryption","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["EMR"],"executionMode":["STREAMING","BATCH"],"transformerEMRConfig.encryption":["KMS"]},"dependsOn":"","group":"CLUSTER","fieldName":"kmsKeyId","name":"transformerEMRConfig.kmsKeyId","type":"CREDENTIAL","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63","65","66","67","68"],"elConstantDefinitionsIdx":["64"],"displayPosition":50200,"connectionType":"","displayMode":"ADVANCED","description":"AWS KMS master encryption key that was used for the object. The KMS key you specify in the policy must use the \"arn:aws:kms:region:acct-id:key/key-id\" format.","required":true,"label":"AWS KMS Key ARN","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["DATAPROC"],"executionMode":["STREAMING","BATCH"]},"dependsOn":"","group":"DATAPROC","fieldName":"projectId","name":"googleCloudCredentialsConfig.projectId","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":10,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Project ID","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["DATAPROC"],"executionMode":["STREAMING","BATCH"]},"dependsOn":"","group":"DATAPROC","fieldName":"credentialsProvider","name":"googleCloudCredentialsConfig.credentialsProvider","type":"MODEL","defaultValue":"DEFAULT_PROVIDER","max":9223372036854776000,"model":{"values":["DEFAULT_PROVIDER","JSON_PROVIDER","JSON"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.stage.common.CredentialsProviderChooserValues","filteringConfig":"","labels":["Default Credentials Provider","Service Account Credentials File (JSON)","Service Account Credentials (JSON)"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":20,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Credentials Provider","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"googleCloudCredentialsConfig.credentialsProvider":["JSON_PROVIDER"],"clusterConfig.clusterType":["DATAPROC"],"executionMode":["STREAMING","BATCH"]},"dependsOn":"","group":"DATAPROC","fieldName":"path","name":"googleCloudCredentialsConfig.path","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":30,"connectionType":"","displayMode":"BASIC","description":"Path to the credentials file.","required":true,"label":"Credentials File Path (JSON)","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"googleCloudCredentialsConfig.credentialsProvider":["JSON"],"clusterConfig.clusterType":["DATAPROC"],"executionMode":["STREAMING","BATCH"]},"dependsOn":"","group":"DATAPROC","fieldName":"credentialsFileContent","name":"googleCloudCredentialsConfig.credentialsFileContent","type":"CREDENTIAL","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63","65","66","67","68"],"elConstantDefinitionsIdx":["64"],"displayPosition":30,"connectionType":"","displayMode":"BASIC","description":"Content of the credentials file","required":true,"label":"Credentials File Content (JSON)","mode":"application/json","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["DATAPROC"],"executionMode":["STREAMING","BATCH"]},"dependsOn":"","group":"DATAPROC","fieldName":"region","name":"googleCloudConfig.region","type":"MODEL","defaultValue":null,"max":9223372036854776000,"model":{"values":["US_WEST_1","US_WEST_2","US_WEST_3","US_EAST_1","US_EAST_4","US_CENTRAL_1","ASIA_EAST_1","ASIA_EAST_2","ASIA_NORTH_EAST_1","ASIA_NORTH_EAST_2","ASIA_NORTH_EAST_3","ASIA_SOUTH_1","ASIA_SOUTH_EAST_1","AUSTRALIA_SOUTH_EAST_1","EUROPE_NORTH_1","EUROPE_WEST_1","EUROPE_WEST_2","EUROPE_WEST_3","EUROPE_WEST_4","EUROPE_WEST_6","NORTH_AMERICA_NORTH_EAST_1","SOUTH_AMERICA_EAST_1","CUSTOM"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.lib.googlecloud.GoogleCloudRegionChooserValues","filteringConfig":"","labels":["us-west1","us-west2","us-west3","us-east1","us-east4","us-central1","asia-east1","asia-east2","asia-northeast1","asia-northeast2","asia-northeast3","asia-south1","asia-southeast1","australia-southeast1","europe-north1","europe-west1","europe-west2","europe-west3","europe-west4","europe-west6","northamerica-northeast1","southamerica-east1","Custom"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":15,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Region","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"googleCloudConfig.region":["CUSTOM"],"clusterConfig.clusterType":["DATAPROC"],"executionMode":["STREAMING","BATCH"]},"dependsOn":"","group":"DATAPROC","fieldName":"customRegion","name":"googleCloudConfig.customRegion","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":18,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Custom Region","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["DATAPROC"],"executionMode":["STREAMING","BATCH"]},"dependsOn":"","group":"DATAPROC","fieldName":"gcsStagingUri","name":"googleCloudConfig.gcsStagingUri","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":60,"connectionType":"","displayMode":"BASIC","description":"GCS URI where Transformer resources are staged for pipeline execution. Use the format: gs://<path>.","required":true,"label":"GCS Staging URI","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["DATAPROC"],"executionMode":["STREAMING","BATCH"]},"dependsOn":"","group":"DATAPROC","fieldName":"create","name":"googleCloudConfig.create","type":"BOOLEAN","defaultValue":false,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":70,"connectionType":"","displayMode":"BASIC","description":"","required":false,"label":"Create Cluster","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["DATAPROC"],"executionMode":["STREAMING","BATCH"],"googleCloudConfig.create":[true]},"dependsOn":"","group":"DATAPROC","fieldName":"clusterPrefix","name":"googleCloudConfig.clusterPrefix","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":80,"connectionType":"","displayMode":"BASIC","description":"Cluster name is generated by suffixing the pipeline ID to this prefix","required":true,"label":"Cluster Prefix","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["DATAPROC"],"executionMode":["STREAMING","BATCH"],"googleCloudConfig.create":[true]},"dependsOn":"","group":"DATAPROC","fieldName":"version","name":"googleCloudConfig.version","type":"STRING","defaultValue":"1.4-ubuntu18","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":85,"connectionType":"","displayMode":"ADVANCED","description":"The image version to use for the Dataproc cluster. Example: 1.5-ubuntu18. If not specified, Dataproc default is used","required":false,"label":"Image Version","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["DATAPROC"],"executionMode":["STREAMING","BATCH"],"googleCloudConfig.create":[true]},"dependsOn":"","group":"DATAPROC","fieldName":"masterType","name":"googleCloudConfig.masterType","type":"MODEL","defaultValue":null,"max":9223372036854776000,"model":{"values":["N1_STANDARD_2","N1_STANDARD_4","N1_STANDARD_8","N1_STANDARD_16","N1_STANDARD_32","N1_STANDARD_64","N1_STANDARD_96","N1_HIGHMEM_2","N1_HIGHMEM_4","N1_HIGHMEM_8","N1_HIGHMEM_16","N1_HIGHMEM_32","N1_HIGHMEM_64","N1_HIGHMEM_96","N1_HIGHCPU_2","N1_HIGHCPU_4","N1_HIGHCPU_8","N1_HIGHCPU_16","N1_HIGHCPU_32","N1_HIGHCPU_64","N1_HIGHCPU_96","N2_STANDARD_2","N2_STANDARD_4","N2_STANDARD_8","N2_STANDARD_16","N2_STANDARD_32","N2_STANDARD_48","N2_STANDARD_64","N2_STANDARD_80","N2_HIGHMEM_2","N2_HIGHMEM_4","N2_HIGHMEM_8","N2_HIGHMEM_16","N2_HIGHMEM_32","N2_HIGHMEM_48","N2_HIGHMEM_64","N2_HIGHMEM_80","N2_HIGHCPU_2","N2_HIGHCPU_4","N2_HIGHCPU_8","N2_HIGHCPU_16","N2_HIGHCPU_32","N2_HIGHCPU_48","N2_HIGHCPU_64","N2_HIGHCPU_80","N2D_STANDARD_2","N2D_STANDARD_4","N2D_STANDARD_8","N2D_STANDARD_16","N2D_STANDARD_32","ND2_STANDARD_48","N2D_STANDARD_64","N2D_STANDARD_80","N2D_STANDARD_96","N2D_STANDARD_128","N2D_STANDARD_224","N2D_HIGHMEM_2","N2D_HIGHMEM_4","N2D_HIGHMEM_8","N2D_HIGHMEM_16","N2D_HIGHMEM_32","N2D_HIGHMEM_48","N2D_HIGHMEM_64","N2D_HIGHMEM_80","N2D_HIGHMEM_96","N2D_HIGHCPU_2","N2D_HIGHCPU_4","N2D_HIGHCPU_8","N2D_HIGHCPU_16","N2D_HIGHCPU_32","N2D_HIGHCPU_48","N2D_HIGHCPU_64","N2D_HIGHCPU_80","N2D_HIGHCPU_96","N2D_HIGHCPU_128","N2D_HIGHCPU_224","E2_STANDARD_2","E2_STANDARD_4","E2_STANDARD_8","E2_STANDARD_16","E2_HIGHMEM_2","E2_HIGHMEM_4","E2_HIGHMEM_8","E2_HIGHMEM_16","E2_HIGHCPU_2","E2_HIGHCPU_4","E2_HIGHCPU_8","E2_HIGHCPU_16","M1_ULTRAMEM_40","M1_ULTRAMEM_80","M1_ULTRAMEM_160","M2_ULTRAMEM_208","M2_ULTRAMEM_416","C2_STANDARD_4","C2_STANDARD_8","C2_STANDARD_16","C2_STANDARD_30","C2_STANDARD_60","CUSTOM"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.lib.googlecloud.MachineTypeChooserValues","filteringConfig":"","labels":["n1-standard-2","n1-standard-4","n1-standard-8","n1-standard-16","n1-standard-32","n1-standard-64","n1-standard-96","n1-highmem-2","n1-highmem-4","n1-highmem-8","n1-highmem-16","n1-highmem-32","n1-highmem-64","n1-highmem-96","n1-highcpu-2","n1-highcpu-4","n1-highcpu-8","n1-highcpu-16","n1-highcpu-32","n1-highcpu-64","n1-highcpu-96","n2-standard-2","n2-standard-4","n2-standard-8","n2-standard-16","n2-standard-32","n2-standard-48","n2-standard-64","n2-standard-80","n2-highmem-2","n2-highmem-4","n2-highmem-8","n2-highmem-16","n2-highmem-32","n2-highmem-48","n2-highmem-64","n2-highmem-80","n2-highcpu-2","n2-highcpu-4","n2-highcpu-8","n2-highcpu-16","n2-highcpu-32","n2-highcpu-48","n2-highcpu-64","n2-highcpu-80","n2d-standard-2","n2d-standard-4","n2d-standard-8","n2d-standard-16","n2d-standard-32","nd2-standard-48","n2d-standard-64","n2d-standard-80","n2d-standard-96","n2d-standard-128","n2d-standard-224","n2d-highmem-2","n2d-highmem-4","n2d-highmem-8","n2d-highmem-16","n2d-highmem-32","n2d-highmem-48","n2d-highmem-64","n2d-highmem-80","n2d-highmem-96","n2d-highcpu-2","n2d-highcpu-4","n2d-highcpu-8","n2d-highcpu-16","n2d-highcpu-32","n2d-highcpu-48","n2d-highcpu-64","n2d-highcpu-80","n2d-highcpu-96","n2d-highcpu-128","n2d-highcpu-224","e2-standard-2","e2-standard-4","e2-standard-8","e2-standard-16","e2-highmem-2","e2-highmem-4","e2-highmem-8","e2-highmem-16","e2-highcpu-2","e2-highcpu-4","e2-highcpu-8","e2-highcpu-16","m1-ultramem-40","m1-ultramem-80","m1-ultramem-160","m2-ultramem-208","m2-ultramem-416","c2-standard-4","c2-standard-8","c2-standard-16","c2-standard-30","c2-standard-60","custom"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":90,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Master Machine Type","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["DATAPROC"],"executionMode":["STREAMING","BATCH"],"googleCloudConfig.create":[true]},"dependsOn":"","group":"DATAPROC","fieldName":"workerType","name":"googleCloudConfig.workerType","type":"MODEL","defaultValue":null,"max":9223372036854776000,"model":{"values":["N1_STANDARD_2","N1_STANDARD_4","N1_STANDARD_8","N1_STANDARD_16","N1_STANDARD_32","N1_STANDARD_64","N1_STANDARD_96","N1_HIGHMEM_2","N1_HIGHMEM_4","N1_HIGHMEM_8","N1_HIGHMEM_16","N1_HIGHMEM_32","N1_HIGHMEM_64","N1_HIGHMEM_96","N1_HIGHCPU_2","N1_HIGHCPU_4","N1_HIGHCPU_8","N1_HIGHCPU_16","N1_HIGHCPU_32","N1_HIGHCPU_64","N1_HIGHCPU_96","N2_STANDARD_2","N2_STANDARD_4","N2_STANDARD_8","N2_STANDARD_16","N2_STANDARD_32","N2_STANDARD_48","N2_STANDARD_64","N2_STANDARD_80","N2_HIGHMEM_2","N2_HIGHMEM_4","N2_HIGHMEM_8","N2_HIGHMEM_16","N2_HIGHMEM_32","N2_HIGHMEM_48","N2_HIGHMEM_64","N2_HIGHMEM_80","N2_HIGHCPU_2","N2_HIGHCPU_4","N2_HIGHCPU_8","N2_HIGHCPU_16","N2_HIGHCPU_32","N2_HIGHCPU_48","N2_HIGHCPU_64","N2_HIGHCPU_80","N2D_STANDARD_2","N2D_STANDARD_4","N2D_STANDARD_8","N2D_STANDARD_16","N2D_STANDARD_32","ND2_STANDARD_48","N2D_STANDARD_64","N2D_STANDARD_80","N2D_STANDARD_96","N2D_STANDARD_128","N2D_STANDARD_224","N2D_HIGHMEM_2","N2D_HIGHMEM_4","N2D_HIGHMEM_8","N2D_HIGHMEM_16","N2D_HIGHMEM_32","N2D_HIGHMEM_48","N2D_HIGHMEM_64","N2D_HIGHMEM_80","N2D_HIGHMEM_96","N2D_HIGHCPU_2","N2D_HIGHCPU_4","N2D_HIGHCPU_8","N2D_HIGHCPU_16","N2D_HIGHCPU_32","N2D_HIGHCPU_48","N2D_HIGHCPU_64","N2D_HIGHCPU_80","N2D_HIGHCPU_96","N2D_HIGHCPU_128","N2D_HIGHCPU_224","E2_STANDARD_2","E2_STANDARD_4","E2_STANDARD_8","E2_STANDARD_16","E2_HIGHMEM_2","E2_HIGHMEM_4","E2_HIGHMEM_8","E2_HIGHMEM_16","E2_HIGHCPU_2","E2_HIGHCPU_4","E2_HIGHCPU_8","E2_HIGHCPU_16","M1_ULTRAMEM_40","M1_ULTRAMEM_80","M1_ULTRAMEM_160","M2_ULTRAMEM_208","M2_ULTRAMEM_416","C2_STANDARD_4","C2_STANDARD_8","C2_STANDARD_16","C2_STANDARD_30","C2_STANDARD_60","CUSTOM"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.lib.googlecloud.MachineTypeChooserValues","filteringConfig":"","labels":["n1-standard-2","n1-standard-4","n1-standard-8","n1-standard-16","n1-standard-32","n1-standard-64","n1-standard-96","n1-highmem-2","n1-highmem-4","n1-highmem-8","n1-highmem-16","n1-highmem-32","n1-highmem-64","n1-highmem-96","n1-highcpu-2","n1-highcpu-4","n1-highcpu-8","n1-highcpu-16","n1-highcpu-32","n1-highcpu-64","n1-highcpu-96","n2-standard-2","n2-standard-4","n2-standard-8","n2-standard-16","n2-standard-32","n2-standard-48","n2-standard-64","n2-standard-80","n2-highmem-2","n2-highmem-4","n2-highmem-8","n2-highmem-16","n2-highmem-32","n2-highmem-48","n2-highmem-64","n2-highmem-80","n2-highcpu-2","n2-highcpu-4","n2-highcpu-8","n2-highcpu-16","n2-highcpu-32","n2-highcpu-48","n2-highcpu-64","n2-highcpu-80","n2d-standard-2","n2d-standard-4","n2d-standard-8","n2d-standard-16","n2d-standard-32","nd2-standard-48","n2d-standard-64","n2d-standard-80","n2d-standard-96","n2d-standard-128","n2d-standard-224","n2d-highmem-2","n2d-highmem-4","n2d-highmem-8","n2d-highmem-16","n2d-highmem-32","n2d-highmem-48","n2d-highmem-64","n2d-highmem-80","n2d-highmem-96","n2d-highcpu-2","n2d-highcpu-4","n2d-highcpu-8","n2d-highcpu-16","n2d-highcpu-32","n2d-highcpu-48","n2d-highcpu-64","n2d-highcpu-80","n2d-highcpu-96","n2d-highcpu-128","n2d-highcpu-224","e2-standard-2","e2-standard-4","e2-standard-8","e2-standard-16","e2-highmem-2","e2-highmem-4","e2-highmem-8","e2-highmem-16","e2-highcpu-2","e2-highcpu-4","e2-highcpu-8","e2-highcpu-16","m1-ultramem-40","m1-ultramem-80","m1-ultramem-160","m2-ultramem-208","m2-ultramem-416","c2-standard-4","c2-standard-8","c2-standard-16","c2-standard-30","c2-standard-60","custom"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":100,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Worker Machine Type","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["DATAPROC"],"executionMode":["STREAMING","BATCH"],"googleCloudConfig.create":[true]},"dependsOn":"","group":"DATAPROC","fieldName":"networkType","name":"googleCloudConfig.networkType","type":"MODEL","defaultValue":null,"max":9223372036854776000,"model":{"values":["AUTO","CUSTOM","NONE"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.lib.googlecloud.NetworkChooserValues","filteringConfig":"","labels":["Auto - VPC created in Auto mode","Custom - VPC with custom subnets","Default VPC for project and region"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":110,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Network Type","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["DATAPROC"],"executionMode":["STREAMING","BATCH"],"googleCloudConfig.create":[true],"googleCloudConfig.networkType":["AUTO"]},"dependsOn":"","group":"DATAPROC","fieldName":"network","name":"googleCloudConfig.network","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":120,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Network Name","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["DATAPROC"],"executionMode":["STREAMING","BATCH"],"googleCloudConfig.create":[true],"googleCloudConfig.networkType":["CUSTOM"]},"dependsOn":"","group":"DATAPROC","fieldName":"subnet","name":"googleCloudConfig.subnet","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":130,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Subnet Name","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["DATAPROC"],"executionMode":["STREAMING","BATCH"],"googleCloudConfig.create":[true]},"dependsOn":"","group":"DATAPROC","fieldName":"tags","name":"googleCloudConfig.tags","type":"LIST","defaultValue":[],"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":140,"connectionType":"","displayMode":"BASIC","description":"","required":false,"label":"Network Tags","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":2,"dependsOnMap":{"clusterConfig.clusterType":["DATAPROC"],"executionMode":["STREAMING","BATCH"],"googleCloudConfig.create":[true]},"dependsOn":"","group":"DATAPROC","fieldName":"workerCount","name":"googleCloudConfig.workerCount","type":"NUMBER","defaultValue":2,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":150,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Worker Count","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["DATAPROC"],"executionMode":["STREAMING","BATCH"],"googleCloudConfig.create":[false]},"dependsOn":"","group":"DATAPROC","fieldName":"clusterName","name":"googleCloudConfig.clusterName","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":160,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Cluster Name","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"clusterConfig.clusterType":["DATAPROC"],"executionMode":["STREAMING","BATCH"],"googleCloudConfig.create":[true]},"dependsOn":"","group":"DATAPROC","fieldName":"terminate","name":"googleCloudConfig.terminate","type":"BOOLEAN","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":170,"connectionType":"","displayMode":"ADVANCED","description":"Terminates the cluster when the pipeline stops","required":false,"label":"Terminate Cluster","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"}]}],"pipelineFragment":null,"pipelineRules":[{"configGroupDefinition":{"classNameToGroupsMap":{"com.streamsets.datacollector.config.PipelineRulesGroups":["NOTIFICATIONS"]},"groupNameToLabelMapList":[{"name":"NOTIFICATIONS","label":"Notifications"}]},"configDefinitions":[{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"NOTIFICATIONS","fieldName":"emailIDs","name":"emailIDs","type":"LIST","defaultValue":[],"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":76,"connectionType":"","displayMode":"BASIC","description":"Email Addresses","required":false,"label":"Email IDs","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"NOTIFICATIONS","fieldName":"webhookConfigs","name":"webhookConfigs","type":"MODEL","defaultValue":[],"max":9223372036854776000,"model":{"values":null,"configDefinitions":[{"min":-9223372036854776000,"dependsOnMap":{"httpMethod":["DELETE","POST","PUT"]},"dependsOn":"","group":"WEBHOOK","fieldName":"payload","name":"payload","type":"TEXT","defaultValue":"{\n \"text\" : \"{{ALERT_TEXT}}. The alert, {{ALERT_NAME}}, was triggered for pipeline '{{PIPELINE_TITLE}}'. \\n The threshold of {{ALERT_VALUE}} records, for the following condition was reached at {{TIME}}: {{ALERT_CONDITION}} \\n <{{PIPELINE_URL}}|Click here> for details!\"\n}","max":9223372036854776000,"model":null,"lines":2,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":240,"connectionType":"","displayMode":"BASIC","description":"Data that should be included as a part of the Webhook request","required":false,"label":"Payload","mode":"application/json","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"","fieldName":"webhookUrl","name":"webhookUrl","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":200,"connectionType":"","displayMode":"BASIC","description":"The Webhook HTTP resource URL","required":false,"label":"Webhook URL","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"NOTIFICATIONS","fieldName":"headers","name":"headers","type":"MAP","defaultValue":[],"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":210,"connectionType":"","displayMode":"BASIC","description":"Headers to include in the request","required":false,"label":"Headers","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"NOTIFICATIONS","fieldName":"httpMethod","name":"httpMethod","type":"MODEL","defaultValue":"POST","max":9223372036854776000,"model":{"values":["GET","PUT","POST","DELETE","HEAD"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.datacollector.config.HttpMethodChooserValues","filteringConfig":"","labels":["GET","PUT","POST","DELETE","HEAD"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":220,"connectionType":"","displayMode":"BASIC","description":"HTTP method to send","required":true,"label":"HTTP Method","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"httpMethod":["DELETE","POST","PUT"]},"dependsOn":"","group":"NOTIFICATIONS","fieldName":"contentType","name":"contentType","type":"STRING","defaultValue":"application/json","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":250,"connectionType":"","displayMode":"BASIC","description":"Content-Type header to be sent with the request; used if that header is not already present","required":false,"label":"Content Type","mode":"text/plain","elDefs":null,"evaluation":"EXPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"NOTIFICATIONS","fieldName":"authType","name":"authType","type":"MODEL","defaultValue":"NONE","max":9223372036854776000,"model":{"values":["NONE","BASIC","DIGEST","UNIVERSAL"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.datacollector.config.AuthenticationTypeChooserValues","filteringConfig":"","labels":["None","Basic","Digest","Universal"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":260,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Authentication Type","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"authType":["BASIC","UNIVERSAL","DIGEST"]},"dependsOn":"","group":"NOTIFICATIONS","fieldName":"username","name":"username","type":"CREDENTIAL","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63","65","66","67","68"],"elConstantDefinitionsIdx":["64"],"displayPosition":270,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Username","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"authType":["BASIC","UNIVERSAL","DIGEST"]},"dependsOn":"","group":"NOTIFICATIONS","fieldName":"password","name":"password","type":"CREDENTIAL","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63","65","66","67","68"],"elConstantDefinitionsIdx":["64"],"displayPosition":280,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Password","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"}],"modelType":"LIST_BEAN","valuesProviderClass":null,"filteringConfig":null,"labels":null},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":200,"connectionType":"","displayMode":"BASIC","description":"Webhooks","required":true,"label":"Webhooks","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"}]}],"stages":[{"configGroupDefinition":{"classNameToGroupsMap":{"com.streamsets.pipeline.stage.origin.scripting.config.Groups":["PERFORMANCE","SCRIPT","ADVANCED"]},"groupNameToLabelMapList":[{"name":"PERFORMANCE","label":"Performance"},{"name":"SCRIPT","label":"Script"},{"name":"ADVANCED","label":"Advanced"}]},"beta":false,"rawSourceDefinition":null,"connectionVerifierStage":false,"offsetCommitTrigger":false,"variableOutputStreams":false,"outputStreams":1,"outputStreamLabelProviderClass":"com.streamsets.pipeline.api.StageDef$DefaultOutputStreams","outputStreamLabels":null,"executionModes":["STANDALONE"],"resetOffset":true,"onlineHelpRefUrl":"index.html?contextID=task_ptn_xnj_l3b","hideStage":[],"outputStreamsDrivenByConfig":"","sendsResponse":false,"inputStreams":-1,"inputStreamLabelProviderClass":"com.streamsets.pipeline.api.StageDef$DefaultInputStreams","inputStreamLabels":null,"bisectable":false,"yamlUpgrader":"","name":"com_streamsets_pipeline_stage_origin_jython_JythonDSource","type":"SOURCE","className":"com.streamsets.pipeline.stage.origin.jython.JythonDSource","version":"1","configDefinitions":[{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"SCRIPT","fieldName":"script","name":"script","type":"TEXT","defaultValue":"# Sample Jython code - Data Generator\n#\n# Available constants:\n# sdc.lastOffsets: Dictionary representing the (string) offset previously reached\n# for each (string) entityName. Offsets are committed by the pipeline.\n# sdc.batchSize: Requested record batch size (from UI).\n# sdc.nThreads: Number of threads to run (from UI).\n# sdc.userParams: Dictionary of user-specified keys and values (from UI).\n#\n# These can be used to assign a type to a field with a value null:\n# sdc.NULL_BOOLEAN, sdc.NULL_CHAR, sdc.NULL_BYTE, sdc.NULL_SHORT, sdc.NULL_INTEGER,\n# sdc.NULL_LONG, sdc.NULL_FLOAT, sdc.NULL_DOUBLE, sdc.NULL_DATE, sdc.NULL_DATETIME,\n# sdc.NULL_TIME, sdc.NULL_DECIMAL, sdc.NULL_BYTE_ARRAY, sdc.NULL_STRING, sdc.NULL_LIST,\n# sdc.NULL_MAP\n#\n# Available functions:\n# sdc.createBatch(): Return a new batch.\n# sdc.createRecord(String recordId): Return a new record. Pass a recordId to uniquely identify\n# the record and include enough information to track down the record source.\n# sdc.createEvent(String type, int version): Return a new empty event with standard headers.\n# Batch.add(record): Append a record to the batch.\n# Batch.add(record[]): Append a list of records to the batch.\n# Batch.addError(record, msg): Add an error record to the batch with the associated error message.\n# Batch.addEvent(event): Append an event to the batch.\n# Only events created with sdc.createEvent() are supported.\n# Batch.size(): Return the number of records in the batch.\n# Batch.errorCount(): Return the number of error records in the batch.\n# Batch.eventCount(): Return the number of events in the batch.\n# Batch.process(entityName, entityOffSet): Process the batch through the rest of\n# the pipeline and commit the offset in accordance with the pipeline's\n# delivery guarantee.\n# Batch.getSourceResponseRecords(): After a batch is processed, retrieve any\n# response records returned by downstream stages.\n# sdc.isStopped(): Return whether or not the pipeline has been stopped.\n# sdc.isPreview(): Return whether or not the pipeline is in preview mode.\n# sdc.importLock() and sdc.importUnlock(): Acquire or release a systemwide lock which can be\n# used to circumvent a known bug with the thread-safety of Jython imports. (https://bugs.jython.org/issue2642)\n# sdc.log.<loglevel>(msg, obj...): Use instead of print to send log messages to the log4j log instead of stdout.\n# loglevel is any log4j level: e.g. info, error, warn, trace.\n# sdc.getFieldNull(Record, 'field path'): Receive a constant defined above\n# to check if the field is a typed field with value null.\n# sdc.createMap(boolean listMap): Create a map for use as a field in a record.\n# Pass true to this function to create a list map (ordered map).\n#\n# Available Record Header Variables:\n# record.attributes: A map of record header attributes.\n# record.<header name>: Get the value of 'header name'.\n#\n# Add additional module search paths:\n# try:\n# sdc.importLock()\n# import sys\n# sys.path.append('/some/other/dir/to/search')\n# import something\n# finally:\n# sdc.importUnlock()\n#\n\ntry:\n sdc.importLock()\n import datetime\nfinally:\n sdc.importUnlock()\n\n# single threaded - no entityName because we need only one offset\nentityName = ''\n\n# get previously committed offset or use 0\nif sdc.lastOffsets.containsKey(entityName):\n offset = int(sdc.lastOffsets.get(entityName))\nelse:\n offset = 0\n\n# get record prefix from user parameters or default to empty string\nif sdc.userParams.containsKey('recordPrefix'):\n prefix = sdc.userParams.get('recordPrefix')\nelse:\n prefix = ''\n\ncur_batch = sdc.createBatch()\n\nrecord = sdc.createRecord('record created ' + str(datetime.datetime.now()))\nhasNext = True\nwhile hasNext:\n\n try:\n offset = offset + 1\n record = sdc.createRecord('record created ' + str(datetime.datetime.now()))\n value = prefix + entityName + ':' + str(offset)\n record.value = value\n cur_batch.add(record)\n\n # if the batch is full, process it and start a new one\n if cur_batch.size() >= sdc.batchSize:\n # blocks until all records are written to all destinations\n # (or failure) and updates offset\n # in accordance with delivery guarantee\n cur_batch.process(entityName, str(offset))\n cur_batch = sdc.createBatch()\n # if the pipeline has been stopped, we should end the script\n if sdc.isStopped():\n hasNext = False\n\n except Exception as e:\n cur_batch.addError(record, str(e))\n cur_batch.process(entityName, str(offset))\n hasNext = False\n\nif cur_batch.size() + cur_batch.errorCount() + cur_batch.eventCount() > 0:\n cur_batch.process(entityName, str(offset))\n","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":10,"connectionType":"","displayMode":"BASIC","description":"Press F11 (or ESC on Mac OS X) when cursor is in the editor to toggle full screen editing.","required":true,"label":"User Script","mode":"text/x-python","elDefs":null,"evaluation":"IMPLICIT"},{"min":1,"dependsOnMap":{},"dependsOn":"","group":"PERFORMANCE","fieldName":"batchSize","name":"scriptConf.batchSize","type":"NUMBER","defaultValue":1000,"max":2147483647,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":0,"connectionType":"","displayMode":"ADVANCED","description":"Number of records to generate in a single batch.\nAccess in user script with sdc.batchSize.","required":true,"label":"Batch Size","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":1,"dependsOnMap":{},"dependsOn":"","group":"PERFORMANCE","fieldName":"numThreads","name":"scriptConf.numThreads","type":"NUMBER","defaultValue":1,"max":2147483647,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":0,"connectionType":"","displayMode":"ADVANCED","description":"Number of concurrent threads that generate data in parallel.\nAccess in user script with sdc.numThreads.","required":true,"label":"Number of Threads","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"ADVANCED","fieldName":"scriptRecordType","name":"scriptConf.scriptRecordType","type":"MODEL","defaultValue":"NATIVE_OBJECTS","max":9223372036854776000,"model":{"values":["SDC_RECORDS","NATIVE_OBJECTS"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.stage.util.scripting.config.ScriptRecordTypeValueChooser","filteringConfig":"","labels":["Data Collector Records","Native Objects"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":10,"connectionType":"","displayMode":"ADVANCED","description":"Record type to use during script execution","required":true,"label":"Record Type","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"ADVANCED","fieldName":"params","name":"scriptConf.params","type":"MAP","defaultValue":[],"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":80,"connectionType":"","displayMode":"ADVANCED","description":"Parameters and values for use in script.\nAccess in user script as sdc.userParams.","required":false,"label":"Parameters in Script","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"","fieldName":"stageOnRecordError","name":"stageOnRecordError","type":"MODEL","defaultValue":"TO_ERROR","max":9223372036854776000,"model":{"values":["DISCARD","TO_ERROR","STOP_PIPELINE"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.datacollector.config.OnRecordErrorChooserValues","filteringConfig":"","labels":["Discard","Send to Error","Stop Pipeline"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":30,"connectionType":"","displayMode":"ADVANCED","description":"Action to take with records sent to error","required":true,"label":"On Record Error","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"}],"icon":"jython.png","description":"Produces record batches using Jython script","statsAggregatorStage":false,"privateClassLoader":false,"services":[],"eventDefs":[],"library":"streamsets-datacollector-jython_2_7-lib","label":"Jython Scripting","libraryLabel":"Jython 2.7","pipelineLifecycleStage":false,"errorStage":false,"onRecordError":true,"producingEvents":true,"preconditions":false},{"configGroupDefinition":{"classNameToGroupsMap":{"com.streamsets.pipeline.stage.destination.localfilesystem.Groups":["OUTPUT_FILES","LATE_RECORDS","DATA_FORMAT"]},"groupNameToLabelMapList":[{"name":"OUTPUT_FILES","label":"Output Files"},{"name":"LATE_RECORDS","label":"Late Records"},{"name":"DATA_FORMAT","label":"Data Format"}]},"beta":false,"rawSourceDefinition":null,"connectionVerifierStage":false,"offsetCommitTrigger":false,"variableOutputStreams":false,"outputStreams":0,"outputStreamLabelProviderClass":null,"outputStreamLabels":null,"executionModes":["STANDALONE","CLUSTER_BATCH","CLUSTER_YARN_STREAMING","CLUSTER_MESOS_STREAMING","EMR_BATCH"],"resetOffset":false,"onlineHelpRefUrl":"index.html?contextID=task_e33_3v5_1r","hideStage":[],"outputStreamsDrivenByConfig":"","sendsResponse":false,"inputStreams":-1,"inputStreamLabelProviderClass":"com.streamsets.pipeline.api.StageDef$DefaultInputStreams","inputStreamLabels":null,"bisectable":false,"yamlUpgrader":"upgrader/LocalFileSystemDTarget.yaml","name":"com_streamsets_pipeline_stage_destination_localfilesystem_LocalFileSystemDTarget","type":"TARGET","className":"com.streamsets.pipeline.stage.destination.localfilesystem.LocalFileSystemDTarget","version":"4","configDefinitions":[{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"OUTPUT_FILES","fieldName":"uniquePrefix","name":"configs.uniquePrefix","type":"STRING","defaultValue":"sdc-${sdc:id()}","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63","117"],"elConstantDefinitionsIdx":["64"],"displayPosition":105,"connectionType":"","displayMode":"ADVANCED","description":"File name prefix","required":false,"label":"Files Prefix","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.fileType":["SEQUENCE_FILE","TEXT"]},"dependsOn":"","group":"OUTPUT_FILES","fieldName":"fileNameSuffix","name":"configs.fileNameSuffix","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":106,"connectionType":"","displayMode":"ADVANCED","description":"File name suffix e.g.'txt'","required":false,"label":"Files Suffix","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"OUTPUT_FILES","fieldName":"dirPathTemplateInHeader","name":"configs.dirPathTemplateInHeader","type":"BOOLEAN","defaultValue":false,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":107,"connectionType":"","displayMode":"ADVANCED","description":"The directory is defined by the 'targetDirectory' record header attribute instead of the Directory Template configuration property.","required":true,"label":"Directory in Header","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.dirPathTemplateInHeader":[false]},"dependsOn":"","group":"OUTPUT_FILES","fieldName":"dirPathTemplate","name":"configs.dirPathTemplate","type":"STRING","defaultValue":"/tmp/out/${YYYY()}-${MM()}-${DD()}-${hh()}","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63","175","176","177","178","179","180","181","182","183","184","185","186","187","188","189","190","191","192","193","194","195","196","197","198","199","200","201","202","203","204","205","212","213","214","215","216","217","218","219","258"],"elConstantDefinitionsIdx":["64","235","236","237","238","239","240","241","242","243","244","245","246","247","248","249","250","251","252","253","254"],"displayPosition":110,"connectionType":"","displayMode":"BASIC","description":"Template for the creation of output directories. Valid variables are ${YYYY()}, ${MM()}, ${DD()}, ${hh()}, ${mm()}, ${ss()} and {record:value(“/field”)} for values in a field. Directories are created based on the smallest time unit variable used.","required":true,"label":"Directory Template","mode":"text/plain","elDefs":null,"evaluation":"EXPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"OUTPUT_FILES","fieldName":"timeZoneID","name":"configs.timeZoneID","type":"MODEL","defaultValue":"UTC","max":9223372036854776000,"model":{"values":["America/Los_Angeles","US/Samoa","Pacific/Samoa","Pacific/Pago_Pago","Pacific/Midway","Pacific/Niue","Pacific/Tahiti","US/Hawaii","SystemV/HST10","Pacific/Johnston","Pacific/Honolulu","Pacific/Rarotonga","Pacific/Marquesas","US/Aleutian","America/Atka","America/Adak","Pacific/Gambier","SystemV/YST9","SystemV/PST8","Pacific/Pitcairn","US/Alaska","SystemV/YST9YDT","America/Yakutat","America/Sitka","America/Nome","America/Metlakatla","America/Juneau","America/Anchorage","US/Pacific","SystemV/PST8PDT","PST8PDT","Mexico/BajaNorte","Canada/Pacific","America/Vancouver","America/Tijuana","America/Santa_Isabel","America/Ensenada","US/Arizona","SystemV/MST7","Canada/Yukon","America/Whitehorse","America/Phoenix","America/Hermosillo","America/Fort_Nelson","America/Dawson_Creek","America/Dawson","America/Creston","US/Mountain","SystemV/MST7MDT","Navajo","Mexico/BajaSur","MST7MDT","Canada/Mountain","America/Yellowknife","America/Shiprock","America/Ojinaga","America/Mazatlan","America/Inuvik","America/Edmonton","America/Denver","America/Chihuahua","America/Cambridge_Bay","America/Boise","Pacific/Galapagos","Pacific/Easter","Chile/EasterIsland","SystemV/CST6","Canada/Saskatchewan","America/Tegucigalpa","America/Swift_Current","America/Regina","America/Managua","America/Guatemala","America/El_Salvador","America/Costa_Rica","America/Belize","America/Lima","SystemV/EST5","Jamaica","America/Panama","America/Jamaica","America/Coral_Harbour","America/Cayman","America/Cancun","America/Atikokan","America/Guayaquil","US/Indiana-Starke","US/Central","SystemV/CST6CDT","Mexico/General","Canada/Central","CST6CDT","America/Winnipeg","America/Resolute","America/Rankin_Inlet","America/Rainy_River","America/North_Dakota/New_Salem","America/North_Dakota/Center","America/North_Dakota/Beulah","America/Monterrey","America/Mexico_City","America/Merida","America/Menominee","America/Matamoros","America/Knox_IN","America/Indiana/Tell_City","America/Indiana/Knox","America/Chicago","America/Bahia_Banderas","America/Bogota","Brazil/Acre","America/Rio_Branco","America/Porto_Acre","America/Eirunepe","America/Caracas","America/Asuncion","America/Guyana","US/Michigan","US/Eastern","US/East-Indiana","SystemV/EST5EDT","EST5EDT","Canada/Eastern","America/Toronto","America/Thunder_Bay","America/Port-au-Prince","America/Pangnirtung","America/Nipigon","America/New_York","America/Nassau","America/Montreal","America/Louisville","America/Kentucky/Monticello","America/Kentucky/Louisville","America/Iqaluit","America/Indianapolis","America/Indiana/Winamac","America/Indiana/Vincennes","America/Indiana/Vevay","America/Indiana/Petersburg","America/Indiana/Marengo","America/Indiana/Indianapolis","America/Grand_Turk","America/Fort_Wayne","America/Detroit","Cuba","America/Havana","Chile/Continental","America/Santiago","America/La_Paz","SystemV/AST4","America/Virgin","America/Tortola","America/St_Vincent","America/St_Thomas","America/St_Lucia","America/St_Kitts","America/St_Barthelemy","America/Santo_Domingo","America/Puerto_Rico","America/Port_of_Spain","America/Montserrat","America/Martinique","America/Marigot","America/Lower_Princes","America/Kralendijk","America/Guadeloupe","America/Grenada","America/Dominica","America/Curacao","America/Blanc-Sablon","America/Barbados","America/Aruba","America/Antigua","America/Anguilla","Brazil/West","America/Porto_Velho","America/Manaus","America/Cuiaba","America/Campo_Grande","America/Boa_Vista","America/Montevideo","America/Paramaribo","Antarctica/Rothera","America/Cayenne","Atlantic/Stanley","Antarctica/Palmer","Brazil/East","America/Sao_Paulo","America/Santarem","America/Recife","America/Maceio","America/Fortaleza","America/Belem","America/Bahia","America/Araguaina","America/Punta_Arenas","SystemV/AST4ADT","Canada/Atlantic","Atlantic/Bermuda","America/Thule","America/Moncton","America/Halifax","America/Goose_Bay","America/Glace_Bay","America/Rosario","America/Mendoza","America/Jujuy","America/Cordoba","America/Catamarca","America/Buenos_Aires","America/Argentina/Ushuaia","America/Argentina/Tucuman","America/Argentina/San_Luis","America/Argentina/San_Juan","America/Argentina/Salta","America/Argentina/Rio_Gallegos","America/Argentina/Mendoza","America/Argentina/La_Rioja","America/Argentina/Jujuy","America/Argentina/Cordoba","America/Argentina/ComodRivadavia","America/Argentina/Catamarca","America/Argentina/Buenos_Aires","Canada/Newfoundland","America/St_Johns","America/Nuuk","America/Godthab","America/Miquelon","Atlantic/South_Georgia","Brazil/DeNoronha","America/Noronha","Atlantic/Cape_Verde","Atlantic/Azores","America/Scoresbysund","Africa/Abidjan","Africa/Accra","Africa/Bamako","Africa/Banjul","Africa/Bissau","Africa/Conakry","Africa/Dakar","Africa/Freetown","Africa/Lome","Africa/Monrovia","Africa/Nouakchott","Africa/Ouagadougou","Africa/Sao_Tome","Africa/Timbuktu","America/Danmarkshavn","Atlantic/Reykjavik","Atlantic/St_Helena","Etc/Greenwich","GMT","GMT0","Greenwich","Iceland","Etc/UCT","Etc/UTC","Etc/Universal","Etc/Zulu","UCT","UTC","Universal","Zulu","Europe/Belfast","Europe/Guernsey","Europe/Isle_of_Man","Europe/Jersey","Europe/London","GB","GB-Eire","Africa/Algiers","Africa/Tunis","Eire","Europe/Dublin","Africa/Bangui","Africa/Brazzaville","Africa/Douala","Africa/Kinshasa","Africa/Lagos","Africa/Libreville","Africa/Luanda","Africa/Malabo","Africa/Ndjamena","Africa/Niamey","Africa/Porto-Novo","Africa/Casablanca","Africa/El_Aaiun","Atlantic/Canary","Atlantic/Faeroe","Atlantic/Faroe","Atlantic/Madeira","Europe/Lisbon","Portugal","WET","Antarctica/Troll","Africa/Blantyre","Africa/Bujumbura","Africa/Gaborone","Africa/Harare","Africa/Khartoum","Africa/Kigali","Africa/Lubumbashi","Africa/Lusaka","Africa/Maputo","Africa/Windhoek","Africa/Ceuta","Arctic/Longyearbyen","Atlantic/Jan_Mayen","CET","Europe/Amsterdam","Europe/Andorra","Europe/Belgrade","Europe/Berlin","Europe/Bratislava","Europe/Brussels","Europe/Budapest","Europe/Busingen","Europe/Copenhagen","Europe/Gibraltar","Europe/Ljubljana","Europe/Luxembourg","Europe/Madrid","Europe/Malta","Europe/Monaco","Europe/Oslo","Europe/Paris","Europe/Podgorica","Europe/Prague","Europe/Rome","Europe/San_Marino","Europe/Sarajevo","Europe/Skopje","Europe/Stockholm","Europe/Tirane","Europe/Vaduz","Europe/Vatican","Europe/Vienna","Europe/Warsaw","Europe/Zagreb","Europe/Zurich","Poland","Africa/Cairo","Africa/Tripoli","Egypt","Europe/Kaliningrad","Libya","MET","Africa/Johannesburg","Africa/Maseru","Africa/Mbabane","Asia/Aden","Asia/Baghdad","Asia/Bahrain","Asia/Kuwait","Asia/Qatar","Asia/Riyadh","Asia/Famagusta","Africa/Addis_Ababa","Africa/Asmara","Africa/Asmera","Africa/Dar_es_Salaam","Africa/Djibouti","Africa/Juba","Africa/Kampala","Africa/Mogadishu","Africa/Nairobi","Indian/Antananarivo","Indian/Comoro","Indian/Mayotte","Asia/Amman","Asia/Beirut","Asia/Damascus","Asia/Gaza","Asia/Hebron","Asia/Nicosia","EET","Europe/Athens","Europe/Bucharest","Europe/Chisinau","Europe/Helsinki","Europe/Kiev","Europe/Mariehamn","Europe/Nicosia","Europe/Riga","Europe/Sofia","Europe/Tallinn","Europe/Tiraspol","Europe/Uzhgorod","Europe/Vilnius","Europe/Zaporozhye","Europe/Kirov","Asia/Jerusalem","Asia/Tel_Aviv","Israel","Europe/Minsk","Europe/Moscow","Europe/Simferopol","W-SU","Antarctica/Syowa","Asia/Istanbul","Europe/Istanbul","Turkey","Asia/Yerevan","Asia/Baku","Europe/Astrakhan","Europe/Saratov","Europe/Ulyanovsk","Asia/Tbilisi","Asia/Dubai","Asia/Muscat","Europe/Volgograd","Indian/Mauritius","Indian/Reunion","Europe/Samara","Indian/Mahe","Asia/Kabul","Asia/Tehran","Iran","Asia/Aqtau","Asia/Aqtobe","Asia/Atyrau","Antarctica/Mawson","Indian/Maldives","Asia/Oral","Asia/Karachi","Asia/Qyzylorda","Indian/Kerguelen","Asia/Dushanbe","Asia/Ashgabat","Asia/Ashkhabad","Asia/Samarkand","Asia/Tashkent","Asia/Yekaterinburg","Asia/Calcutta","Asia/Colombo","Asia/Kolkata","Asia/Kathmandu","Asia/Katmandu","Asia/Almaty","Asia/Dacca","Asia/Dhaka","Asia/Thimbu","Asia/Thimphu","Indian/Chagos","Asia/Bishkek","Asia/Omsk","Asia/Qostanay","Antarctica/Vostok","Asia/Kashgar","Asia/Urumqi","Indian/Cocos","Asia/Rangoon","Asia/Yangon","Asia/Barnaul","Asia/Tomsk","Indian/Christmas","Antarctica/Davis","Asia/Hovd","Asia/Bangkok","Asia/Ho_Chi_Minh","Asia/Phnom_Penh","Asia/Saigon","Asia/Vientiane","Asia/Krasnoyarsk","Asia/Novokuznetsk","Asia/Novosibirsk","Asia/Jakarta","Asia/Pontianak","Australia/Perth","Australia/West","Asia/Brunei","Asia/Choibalsan","Asia/Chongqing","Asia/Chungking","Asia/Harbin","Asia/Macao","Asia/Macau","Asia/Shanghai","Asia/Taipei","PRC","Asia/Hong_Kong","Hongkong","Asia/Irkutsk","Asia/Kuala_Lumpur","Asia/Kuching","Asia/Manila","Asia/Singapore","Singapore","Asia/Ulaanbaatar","Asia/Ulan_Bator","Asia/Makassar","Asia/Ujung_Pandang","Australia/Eucla","Asia/Tokyo","Japan","Asia/Pyongyang","Asia/Seoul","ROK","Pacific/Palau","Asia/Dili","Asia/Jayapura","Asia/Chita","Asia/Khandyga","Asia/Yakutsk","Australia/Adelaide","Australia/Broken_Hill","Australia/Darwin","Australia/North","Australia/South","Australia/Yancowinna","Australia/ACT","Australia/Brisbane","Australia/Canberra","Australia/Currie","Australia/Hobart","Australia/Lindeman","Australia/Melbourne","Australia/NSW","Australia/Queensland","Australia/Sydney","Australia/Tasmania","Australia/Victoria","Pacific/Chuuk","Pacific/Truk","Pacific/Yap","Pacific/Guam","Pacific/Saipan","Antarctica/DumontDUrville","Antarctica/Macquarie","Pacific/Port_Moresby","Asia/Ust-Nera","Asia/Vladivostok","Australia/LHI","Australia/Lord_Howe","Antarctica/Casey","Pacific/Bougainville","Pacific/Kosrae","Asia/Magadan","Pacific/Noumea","Pacific/Norfolk","Pacific/Pohnpei","Pacific/Ponape","Asia/Sakhalin","Pacific/Guadalcanal","Asia/Srednekolymsk","Pacific/Efate","Asia/Anadyr","Pacific/Fiji","Pacific/Tarawa","Kwajalein","Pacific/Kwajalein","Pacific/Majuro","Pacific/Nauru","Antarctica/McMurdo","Antarctica/South_Pole","NZ","Pacific/Auckland","Asia/Kamchatka","Pacific/Funafuti","Pacific/Wake","Pacific/Wallis","NZ-CHAT","Pacific/Chatham","Pacific/Enderbury","Pacific/Fakaofo","Pacific/Tongatapu","Pacific/Apia","Pacific/Kiritimati"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.config.TimeZoneChooserValues","filteringConfig":"","labels":["Same as Data Collector: -07:00 PT (America/Los_Angeles)","-11:00 ST (US/Samoa)","-11:00 ST (Pacific/Samoa)","-11:00 ST (Pacific/Pago_Pago)","-11:00 ST (Pacific/Midway)","-11:00 NUT (Pacific/Niue)","-10:00 TAHT (Pacific/Tahiti)","-10:00 HT (US/Hawaii)","-10:00 HT (SystemV/HST10)","-10:00 HT (Pacific/Johnston)","-10:00 HT (Pacific/Honolulu)","-10:00 CKT (Pacific/Rarotonga)","-09:30 MART (Pacific/Marquesas)","-09:00 HT (US/Aleutian)","-09:00 HT (America/Atka)","-09:00 HT (America/Adak)","-09:00 GAMT (Pacific/Gambier)","-09:00 AKT (SystemV/YST9)","-08:00 PT (SystemV/PST8)","-08:00 PT (Pacific/Pitcairn)","-08:00 AKT (US/Alaska)","-08:00 AKT (SystemV/YST9YDT)","-08:00 AKT (America/Yakutat)","-08:00 AKT (America/Sitka)","-08:00 AKT (America/Nome)","-08:00 AKT (America/Metlakatla)","-08:00 AKT (America/Juneau)","-08:00 AKT (America/Anchorage)","-07:00 PT (US/Pacific)","-07:00 PT (SystemV/PST8PDT)","-07:00 PT (PST8PDT)","-07:00 PT (Mexico/BajaNorte)","-07:00 PT (Canada/Pacific)","-07:00 PT (America/Vancouver)","-07:00 PT (America/Tijuana)","-07:00 PT (America/Santa_Isabel)","-07:00 PT (America/Ensenada)","-07:00 MT (US/Arizona)","-07:00 MT (SystemV/MST7)","-07:00 MT (Canada/Yukon)","-07:00 MT (America/Whitehorse)","-07:00 MT (America/Phoenix)","-07:00 MT (America/Hermosillo)","-07:00 MT (America/Fort_Nelson)","-07:00 MT (America/Dawson_Creek)","-07:00 MT (America/Dawson)","-07:00 MT (America/Creston)","-06:00 MT (US/Mountain)","-06:00 MT (SystemV/MST7MDT)","-06:00 MT (Navajo)","-06:00 MT (Mexico/BajaSur)","-06:00 MT (MST7MDT)","-06:00 MT (Canada/Mountain)","-06:00 MT (America/Yellowknife)","-06:00 MT (America/Shiprock)","-06:00 MT (America/Ojinaga)","-06:00 MT (America/Mazatlan)","-06:00 MT (America/Inuvik)","-06:00 MT (America/Edmonton)","-06:00 MT (America/Denver)","-06:00 MT (America/Chihuahua)","-06:00 MT (America/Cambridge_Bay)","-06:00 MT (America/Boise)","-06:00 GALT (Pacific/Galapagos)","-06:00 EAST (Pacific/Easter)","-06:00 EAST (Chile/EasterIsland)","-06:00 CT (SystemV/CST6)","-06:00 CT (Canada/Saskatchewan)","-06:00 CT (America/Tegucigalpa)","-06:00 CT (America/Swift_Current)","-06:00 CT (America/Regina)","-06:00 CT (America/Managua)","-06:00 CT (America/Guatemala)","-06:00 CT (America/El_Salvador)","-06:00 CT (America/Costa_Rica)","-06:00 CT (America/Belize)","-05:00 PET (America/Lima)","-05:00 ET (SystemV/EST5)","-05:00 ET (Jamaica)","-05:00 ET (America/Panama)","-05:00 ET (America/Jamaica)","-05:00 ET (America/Coral_Harbour)","-05:00 ET (America/Cayman)","-05:00 ET (America/Cancun)","-05:00 ET (America/Atikokan)","-05:00 ECT (America/Guayaquil)","-05:00 CT (US/Indiana-Starke)","-05:00 CT (US/Central)","-05:00 CT (SystemV/CST6CDT)","-05:00 CT (Mexico/General)","-05:00 CT (Canada/Central)","-05:00 CT (CST6CDT)","-05:00 CT (America/Winnipeg)","-05:00 CT (America/Resolute)","-05:00 CT (America/Rankin_Inlet)","-05:00 CT (America/Rainy_River)","-05:00 CT (America/North_Dakota/New_Salem)","-05:00 CT (America/North_Dakota/Center)","-05:00 CT (America/North_Dakota/Beulah)","-05:00 CT (America/Monterrey)","-05:00 CT (America/Mexico_City)","-05:00 CT (America/Merida)","-05:00 CT (America/Menominee)","-05:00 CT (America/Matamoros)","-05:00 CT (America/Knox_IN)","-05:00 CT (America/Indiana/Tell_City)","-05:00 CT (America/Indiana/Knox)","-05:00 CT (America/Chicago)","-05:00 CT (America/Bahia_Banderas)","-05:00 COT (America/Bogota)","-05:00 ACT (Brazil/Acre)","-05:00 ACT (America/Rio_Branco)","-05:00 ACT (America/Porto_Acre)","-05:00 ACT (America/Eirunepe)","-04:00 VET (America/Caracas)","-04:00 PYT (America/Asuncion)","-04:00 GYT (America/Guyana)","-04:00 ET (US/Michigan)","-04:00 ET (US/Eastern)","-04:00 ET (US/East-Indiana)","-04:00 ET (SystemV/EST5EDT)","-04:00 ET (EST5EDT)","-04:00 ET (Canada/Eastern)","-04:00 ET (America/Toronto)","-04:00 ET (America/Thunder_Bay)","-04:00 ET (America/Port-au-Prince)","-04:00 ET (America/Pangnirtung)","-04:00 ET (America/Nipigon)","-04:00 ET (America/New_York)","-04:00 ET (America/Nassau)","-04:00 ET (America/Montreal)","-04:00 ET (America/Louisville)","-04:00 ET (America/Kentucky/Monticello)","-04:00 ET (America/Kentucky/Louisville)","-04:00 ET (America/Iqaluit)","-04:00 ET (America/Indianapolis)","-04:00 ET (America/Indiana/Winamac)","-04:00 ET (America/Indiana/Vincennes)","-04:00 ET (America/Indiana/Vevay)","-04:00 ET (America/Indiana/Petersburg)","-04:00 ET (America/Indiana/Marengo)","-04:00 ET (America/Indiana/Indianapolis)","-04:00 ET (America/Grand_Turk)","-04:00 ET (America/Fort_Wayne)","-04:00 ET (America/Detroit)","-04:00 CT (Cuba)","-04:00 CT (America/Havana)","-04:00 CLT (Chile/Continental)","-04:00 CLT (America/Santiago)","-04:00 BOT (America/La_Paz)","-04:00 AT (SystemV/AST4)","-04:00 AT (America/Virgin)","-04:00 AT (America/Tortola)","-04:00 AT (America/St_Vincent)","-04:00 AT (America/St_Thomas)","-04:00 AT (America/St_Lucia)","-04:00 AT (America/St_Kitts)","-04:00 AT (America/St_Barthelemy)","-04:00 AT (America/Santo_Domingo)","-04:00 AT (America/Puerto_Rico)","-04:00 AT (America/Port_of_Spain)","-04:00 AT (America/Montserrat)","-04:00 AT (America/Martinique)","-04:00 AT (America/Marigot)","-04:00 AT (America/Lower_Princes)","-04:00 AT (America/Kralendijk)","-04:00 AT (America/Guadeloupe)","-04:00 AT (America/Grenada)","-04:00 AT (America/Dominica)","-04:00 AT (America/Curacao)","-04:00 AT (America/Blanc-Sablon)","-04:00 AT (America/Barbados)","-04:00 AT (America/Aruba)","-04:00 AT (America/Antigua)","-04:00 AT (America/Anguilla)","-04:00 AMT (Brazil/West)","-04:00 AMT (America/Porto_Velho)","-04:00 AMT (America/Manaus)","-04:00 AMT (America/Cuiaba)","-04:00 AMT (America/Campo_Grande)","-04:00 AMT (America/Boa_Vista)","-03:00 UYT (America/Montevideo)","-03:00 SRT (America/Paramaribo)","-03:00 ROTT (Antarctica/Rothera)","-03:00 GFT (America/Cayenne)","-03:00 FKT (Atlantic/Stanley)","-03:00 CLT (Antarctica/Palmer)","-03:00 BRT (Brazil/East)","-03:00 BRT (America/Sao_Paulo)","-03:00 BRT (America/Santarem)","-03:00 BRT (America/Recife)","-03:00 BRT (America/Maceio)","-03:00 BRT (America/Fortaleza)","-03:00 BRT (America/Belem)","-03:00 BRT (America/Bahia)","-03:00 BRT (America/Araguaina)","-03:00 America/Punta_Arenas (America/Punta_Arenas)","-03:00 AT (SystemV/AST4ADT)","-03:00 AT (Canada/Atlantic)","-03:00 AT (Atlantic/Bermuda)","-03:00 AT (America/Thule)","-03:00 AT (America/Moncton)","-03:00 AT (America/Halifax)","-03:00 AT (America/Goose_Bay)","-03:00 AT (America/Glace_Bay)","-03:00 ART (America/Rosario)","-03:00 ART (America/Mendoza)","-03:00 ART (America/Jujuy)","-03:00 ART (America/Cordoba)","-03:00 ART (America/Catamarca)","-03:00 ART (America/Buenos_Aires)","-03:00 ART (America/Argentina/Ushuaia)","-03:00 ART (America/Argentina/Tucuman)","-03:00 ART (America/Argentina/San_Luis)","-03:00 ART (America/Argentina/San_Juan)","-03:00 ART (America/Argentina/Salta)","-03:00 ART (America/Argentina/Rio_Gallegos)","-03:00 ART (America/Argentina/Mendoza)","-03:00 ART (America/Argentina/La_Rioja)","-03:00 ART (America/Argentina/Jujuy)","-03:00 ART (America/Argentina/Cordoba)","-03:00 ART (America/Argentina/ComodRivadavia)","-03:00 ART (America/Argentina/Catamarca)","-03:00 ART (America/Argentina/Buenos_Aires)","-02:30 NT (Canada/Newfoundland)","-02:30 NT (America/St_Johns)","-02:00 WGT (America/Nuuk)","-02:00 WGT (America/Godthab)","-02:00 PMT (America/Miquelon)","-02:00 GT (Atlantic/South_Georgia)","-02:00 FNT (Brazil/DeNoronha)","-02:00 FNT (America/Noronha)","-01:00 CVT (Atlantic/Cape_Verde)","+00:00 AZOT (Atlantic/Azores)","+00:00 EGT (America/Scoresbysund)","+00:00 GMT (Africa/Abidjan)","+00:00 GMT (Africa/Accra)","+00:00 GMT (Africa/Bamako)","+00:00 GMT (Africa/Banjul)","+00:00 GMT (Africa/Bissau)","+00:00 GMT (Africa/Conakry)","+00:00 GMT (Africa/Dakar)","+00:00 GMT (Africa/Freetown)","+00:00 GMT (Africa/Lome)","+00:00 GMT (Africa/Monrovia)","+00:00 GMT (Africa/Nouakchott)","+00:00 GMT (Africa/Ouagadougou)","+00:00 GMT (Africa/Sao_Tome)","+00:00 GMT (Africa/Timbuktu)","+00:00 GMT (America/Danmarkshavn)","+00:00 GMT (Atlantic/Reykjavik)","+00:00 GMT (Atlantic/St_Helena)","+00:00 GMT (Etc/Greenwich)","+00:00 GMT (GMT)","+00:00 GMT (GMT0)","+00:00 GMT (Greenwich)","+00:00 GMT (Iceland)","+00:00 UTC (Etc/UCT)","+00:00 UTC (Etc/UTC)","+00:00 UTC (Etc/Universal)","+00:00 UTC (Etc/Zulu)","+00:00 UTC (UCT)","+00:00 UTC (UTC)","+00:00 UTC (Universal)","+00:00 UTC (Zulu)","+01:00 BT (Europe/Belfast)","+01:00 BT (Europe/Guernsey)","+01:00 BT (Europe/Isle_of_Man)","+01:00 BT (Europe/Jersey)","+01:00 BT (Europe/London)","+01:00 BT (GB)","+01:00 BT (GB-Eire)","+01:00 CET (Africa/Algiers)","+01:00 CET (Africa/Tunis)","+01:00 IT (Eire)","+01:00 IT (Europe/Dublin)","+01:00 WAT (Africa/Bangui)","+01:00 WAT (Africa/Brazzaville)","+01:00 WAT (Africa/Douala)","+01:00 WAT (Africa/Kinshasa)","+01:00 WAT (Africa/Lagos)","+01:00 WAT (Africa/Libreville)","+01:00 WAT (Africa/Luanda)","+01:00 WAT (Africa/Malabo)","+01:00 WAT (Africa/Ndjamena)","+01:00 WAT (Africa/Niamey)","+01:00 WAT (Africa/Porto-Novo)","+01:00 WET (Africa/Casablanca)","+01:00 WET (Africa/El_Aaiun)","+01:00 WET (Atlantic/Canary)","+01:00 WET (Atlantic/Faeroe)","+01:00 WET (Atlantic/Faroe)","+01:00 WET (Atlantic/Madeira)","+01:00 WET (Europe/Lisbon)","+01:00 WET (Portugal)","+01:00 WET (WET)","+02:00 ATT (Antarctica/Troll)","+02:00 CAT (Africa/Blantyre)","+02:00 CAT (Africa/Bujumbura)","+02:00 CAT (Africa/Gaborone)","+02:00 CAT (Africa/Harare)","+02:00 CAT (Africa/Khartoum)","+02:00 CAT (Africa/Kigali)","+02:00 CAT (Africa/Lubumbashi)","+02:00 CAT (Africa/Lusaka)","+02:00 CAT (Africa/Maputo)","+02:00 CAT (Africa/Windhoek)","+02:00 CET (Africa/Ceuta)","+02:00 CET (Arctic/Longyearbyen)","+02:00 CET (Atlantic/Jan_Mayen)","+02:00 CET (CET)","+02:00 CET (Europe/Amsterdam)","+02:00 CET (Europe/Andorra)","+02:00 CET (Europe/Belgrade)","+02:00 CET (Europe/Berlin)","+02:00 CET (Europe/Bratislava)","+02:00 CET (Europe/Brussels)","+02:00 CET (Europe/Budapest)","+02:00 CET (Europe/Busingen)","+02:00 CET (Europe/Copenhagen)","+02:00 CET (Europe/Gibraltar)","+02:00 CET (Europe/Ljubljana)","+02:00 CET (Europe/Luxembourg)","+02:00 CET (Europe/Madrid)","+02:00 CET (Europe/Malta)","+02:00 CET (Europe/Monaco)","+02:00 CET (Europe/Oslo)","+02:00 CET (Europe/Paris)","+02:00 CET (Europe/Podgorica)","+02:00 CET (Europe/Prague)","+02:00 CET (Europe/Rome)","+02:00 CET (Europe/San_Marino)","+02:00 CET (Europe/Sarajevo)","+02:00 CET (Europe/Skopje)","+02:00 CET (Europe/Stockholm)","+02:00 CET (Europe/Tirane)","+02:00 CET (Europe/Vaduz)","+02:00 CET (Europe/Vatican)","+02:00 CET (Europe/Vienna)","+02:00 CET (Europe/Warsaw)","+02:00 CET (Europe/Zagreb)","+02:00 CET (Europe/Zurich)","+02:00 CET (Poland)","+02:00 EET (Africa/Cairo)","+02:00 EET (Africa/Tripoli)","+02:00 EET (Egypt)","+02:00 EET (Europe/Kaliningrad)","+02:00 EET (Libya)","+02:00 MET (MET)","+02:00 SAT (Africa/Johannesburg)","+02:00 SAT (Africa/Maseru)","+02:00 SAT (Africa/Mbabane)","+03:00 AT (Asia/Aden)","+03:00 AT (Asia/Baghdad)","+03:00 AT (Asia/Bahrain)","+03:00 AT (Asia/Kuwait)","+03:00 AT (Asia/Qatar)","+03:00 AT (Asia/Riyadh)","+03:00 Asia/Famagusta (Asia/Famagusta)","+03:00 EAT (Africa/Addis_Ababa)","+03:00 EAT (Africa/Asmara)","+03:00 EAT (Africa/Asmera)","+03:00 EAT (Africa/Dar_es_Salaam)","+03:00 EAT (Africa/Djibouti)","+03:00 EAT (Africa/Juba)","+03:00 EAT (Africa/Kampala)","+03:00 EAT (Africa/Mogadishu)","+03:00 EAT (Africa/Nairobi)","+03:00 EAT (Indian/Antananarivo)","+03:00 EAT (Indian/Comoro)","+03:00 EAT (Indian/Mayotte)","+03:00 EET (Asia/Amman)","+03:00 EET (Asia/Beirut)","+03:00 EET (Asia/Damascus)","+03:00 EET (Asia/Gaza)","+03:00 EET (Asia/Hebron)","+03:00 EET (Asia/Nicosia)","+03:00 EET (EET)","+03:00 EET (Europe/Athens)","+03:00 EET (Europe/Bucharest)","+03:00 EET (Europe/Chisinau)","+03:00 EET (Europe/Helsinki)","+03:00 EET (Europe/Kiev)","+03:00 EET (Europe/Mariehamn)","+03:00 EET (Europe/Nicosia)","+03:00 EET (Europe/Riga)","+03:00 EET (Europe/Sofia)","+03:00 EET (Europe/Tallinn)","+03:00 EET (Europe/Tiraspol)","+03:00 EET (Europe/Uzhgorod)","+03:00 EET (Europe/Vilnius)","+03:00 EET (Europe/Zaporozhye)","+03:00 Europe/Kirov (Europe/Kirov)","+03:00 IT (Asia/Jerusalem)","+03:00 IT (Asia/Tel_Aviv)","+03:00 IT (Israel)","+03:00 MT (Europe/Minsk)","+03:00 MT (Europe/Moscow)","+03:00 MT (Europe/Simferopol)","+03:00 MT (W-SU)","+03:00 SYOT (Antarctica/Syowa)","+03:00 TRT (Asia/Istanbul)","+03:00 TRT (Europe/Istanbul)","+03:00 TRT (Turkey)","+04:00 AMT (Asia/Yerevan)","+04:00 AZT (Asia/Baku)","+04:00 Europe/Astrakhan (Europe/Astrakhan)","+04:00 Europe/Saratov (Europe/Saratov)","+04:00 Europe/Ulyanovsk (Europe/Ulyanovsk)","+04:00 GET (Asia/Tbilisi)","+04:00 GT (Asia/Dubai)","+04:00 GT (Asia/Muscat)","+04:00 MT (Europe/Volgograd)","+04:00 MUT (Indian/Mauritius)","+04:00 RET (Indian/Reunion)","+04:00 SAMT (Europe/Samara)","+04:00 SCT (Indian/Mahe)","+04:30 AFT (Asia/Kabul)","+04:30 IRT (Asia/Tehran)","+04:30 IRT (Iran)","+05:00 AQTT (Asia/Aqtau)","+05:00 AQTT (Asia/Aqtobe)","+05:00 Asia/Atyrau (Asia/Atyrau)","+05:00 MAWT (Antarctica/Mawson)","+05:00 MVT (Indian/Maldives)","+05:00 ORAT (Asia/Oral)","+05:00 PKT (Asia/Karachi)","+05:00 QYZT (Asia/Qyzylorda)","+05:00 TFT (Indian/Kerguelen)","+05:00 TJT (Asia/Dushanbe)","+05:00 TMT (Asia/Ashgabat)","+05:00 TMT (Asia/Ashkhabad)","+05:00 UZT (Asia/Samarkand)","+05:00 UZT (Asia/Tashkent)","+05:00 YEKT (Asia/Yekaterinburg)","+05:30 IT (Asia/Calcutta)","+05:30 IT (Asia/Colombo)","+05:30 IT (Asia/Kolkata)","+05:45 NPT (Asia/Kathmandu)","+05:45 NPT (Asia/Katmandu)","+06:00 ALMT (Asia/Almaty)","+06:00 BDT (Asia/Dacca)","+06:00 BDT (Asia/Dhaka)","+06:00 BTT (Asia/Thimbu)","+06:00 BTT (Asia/Thimphu)","+06:00 IOT (Indian/Chagos)","+06:00 KGT (Asia/Bishkek)","+06:00 OMST (Asia/Omsk)","+06:00 QOST (Asia/Qostanay)","+06:00 VOST (Antarctica/Vostok)","+06:00 XJT (Asia/Kashgar)","+06:00 XJT (Asia/Urumqi)","+06:30 CCT (Indian/Cocos)","+06:30 MMT (Asia/Rangoon)","+06:30 MMT (Asia/Yangon)","+07:00 Asia/Barnaul (Asia/Barnaul)","+07:00 Asia/Tomsk (Asia/Tomsk)","+07:00 CIT (Indian/Christmas)","+07:00 DAVT (Antarctica/Davis)","+07:00 HOVT (Asia/Hovd)","+07:00 ICT (Asia/Bangkok)","+07:00 ICT (Asia/Ho_Chi_Minh)","+07:00 ICT (Asia/Phnom_Penh)","+07:00 ICT (Asia/Saigon)","+07:00 ICT (Asia/Vientiane)","+07:00 KRAT (Asia/Krasnoyarsk)","+07:00 KRAT (Asia/Novokuznetsk)","+07:00 NOVT (Asia/Novosibirsk)","+07:00 WIB (Asia/Jakarta)","+07:00 WIB (Asia/Pontianak)","+08:00 AWT (Australia/Perth)","+08:00 AWT (Australia/West)","+08:00 BNT (Asia/Brunei)","+08:00 CHOT (Asia/Choibalsan)","+08:00 CT (Asia/Chongqing)","+08:00 CT (Asia/Chungking)","+08:00 CT (Asia/Harbin)","+08:00 CT (Asia/Macao)","+08:00 CT (Asia/Macau)","+08:00 CT (Asia/Shanghai)","+08:00 CT (Asia/Taipei)","+08:00 CT (PRC)","+08:00 HKT (Asia/Hong_Kong)","+08:00 HKT (Hongkong)","+08:00 IRKT (Asia/Irkutsk)","+08:00 MYT (Asia/Kuala_Lumpur)","+08:00 MYT (Asia/Kuching)","+08:00 PT (Asia/Manila)","+08:00 SGT (Asia/Singapore)","+08:00 SGT (Singapore)","+08:00 ULAT (Asia/Ulaanbaatar)","+08:00 ULAT (Asia/Ulan_Bator)","+08:00 WITA (Asia/Makassar)","+08:00 WITA (Asia/Ujung_Pandang)","+08:45 ACWT (Australia/Eucla)","+09:00 JT (Asia/Tokyo)","+09:00 JT (Japan)","+09:00 KT (Asia/Pyongyang)","+09:00 KT (Asia/Seoul)","+09:00 KT (ROK)","+09:00 PWT (Pacific/Palau)","+09:00 TLT (Asia/Dili)","+09:00 WIT (Asia/Jayapura)","+09:00 YAKT (Asia/Chita)","+09:00 YAKT (Asia/Khandyga)","+09:00 YAKT (Asia/Yakutsk)","+09:30 ACT (Australia/Adelaide)","+09:30 ACT (Australia/Broken_Hill)","+09:30 ACT (Australia/Darwin)","+09:30 ACT (Australia/North)","+09:30 ACT (Australia/South)","+09:30 ACT (Australia/Yancowinna)","+10:00 AET (Australia/ACT)","+10:00 AET (Australia/Brisbane)","+10:00 AET (Australia/Canberra)","+10:00 AET (Australia/Currie)","+10:00 AET (Australia/Hobart)","+10:00 AET (Australia/Lindeman)","+10:00 AET (Australia/Melbourne)","+10:00 AET (Australia/NSW)","+10:00 AET (Australia/Queensland)","+10:00 AET (Australia/Sydney)","+10:00 AET (Australia/Tasmania)","+10:00 AET (Australia/Victoria)","+10:00 CHUT (Pacific/Chuuk)","+10:00 CHUT (Pacific/Truk)","+10:00 CHUT (Pacific/Yap)","+10:00 ChT (Pacific/Guam)","+10:00 ChT (Pacific/Saipan)","+10:00 DDUT (Antarctica/DumontDUrville)","+10:00 MIST (Antarctica/Macquarie)","+10:00 PGT (Pacific/Port_Moresby)","+10:00 VLAT (Asia/Ust-Nera)","+10:00 VLAT (Asia/Vladivostok)","+10:30 LHT (Australia/LHI)","+10:30 LHT (Australia/Lord_Howe)","+11:00 AWT (Antarctica/Casey)","+11:00 BT (Pacific/Bougainville)","+11:00 KOST (Pacific/Kosrae)","+11:00 MAGT (Asia/Magadan)","+11:00 NCT (Pacific/Noumea)","+11:00 NFT (Pacific/Norfolk)","+11:00 PONT (Pacific/Pohnpei)","+11:00 PONT (Pacific/Ponape)","+11:00 SAKT (Asia/Sakhalin)","+11:00 SBT (Pacific/Guadalcanal)","+11:00 SRET (Asia/Srednekolymsk)","+11:00 VUT (Pacific/Efate)","+12:00 ANAT (Asia/Anadyr)","+12:00 FJT (Pacific/Fiji)","+12:00 GILT (Pacific/Tarawa)","+12:00 MHT (Kwajalein)","+12:00 MHT (Pacific/Kwajalein)","+12:00 MHT (Pacific/Majuro)","+12:00 NRT (Pacific/Nauru)","+12:00 NZT (Antarctica/McMurdo)","+12:00 NZT (Antarctica/South_Pole)","+12:00 NZT (NZ)","+12:00 NZT (Pacific/Auckland)","+12:00 PETT (Asia/Kamchatka)","+12:00 TVT (Pacific/Funafuti)","+12:00 WAKT (Pacific/Wake)","+12:00 WFT (Pacific/Wallis)","+12:45 CHAT (NZ-CHAT)","+12:45 CHAT (Pacific/Chatham)","+13:00 PHOT (Pacific/Enderbury)","+13:00 TKT (Pacific/Fakaofo)","+13:00 TOT (Pacific/Tongatapu)","+13:00 WST (Pacific/Apia)","+14:00 LINT (Pacific/Kiritimati)"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":120,"connectionType":"","displayMode":"ADVANCED","description":"Time zone to use to resolve directory paths","required":true,"label":"Data Time Zone","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"OUTPUT_FILES","fieldName":"timeDriver","name":"configs.timeDriver","type":"STRING","defaultValue":"${time:now()}","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63","175","176","177","178","179","180","181","182","183","184","185","186","187","188","189","190","191","192","193","194","195","196","197","198","199","200","201","202","203","204","205","212","213","214","215","216","217","218","219","220","221","222","223","224","225","226","227","228","229","230","231","232"],"elConstantDefinitionsIdx":["64","235","236","237","238","239","240","241","242","243","244","245","246","247","248","249","250","251","252","253","254"],"displayPosition":130,"connectionType":"","displayMode":"ADVANCED","description":"Time basis to use for a record. Enter an expression that evaluates to a datetime. To use the processing time, enter ${time:now()}. To use field values, use '${record:value(\"<filepath>\")}'.","required":true,"label":"Time Basis","mode":"text/plain","elDefs":null,"evaluation":"EXPLICIT"},{"min":0,"dependsOnMap":{"configs.fileType":["SEQUENCE_FILE","TEXT"]},"dependsOn":"","group":"OUTPUT_FILES","fieldName":"maxRecordsPerFile","name":"configs.maxRecordsPerFile","type":"NUMBER","defaultValue":0,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":140,"connectionType":"","displayMode":"ADVANCED","description":"Number of records that triggers the creation of a new file. Use 0 to opt out.","required":true,"label":"Max Records in File","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":0,"dependsOnMap":{"configs.fileType":["SEQUENCE_FILE","TEXT"]},"dependsOn":"","group":"OUTPUT_FILES","fieldName":"maxFileSize","name":"configs.maxFileSize","type":"NUMBER","defaultValue":0,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":150,"connectionType":"","displayMode":"ADVANCED","description":"Exceeding this size triggers the creation of a new file. Use 0 to opt out.","required":true,"label":"Max File Size (MB)","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.fileType":["SEQUENCE_FILE","TEXT"]},"dependsOn":"","group":"OUTPUT_FILES","fieldName":"idleTimeout","name":"configs.idleTimeout","type":"STRING","defaultValue":"${1 * HOURS}","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63","212","213","214","215","216","217","218","219"],"elConstantDefinitionsIdx":["64","252","253","254"],"displayPosition":155,"connectionType":"","displayMode":"ADVANCED","description":"Maximum time for a file to remain idle. After no records are written to a file for the specified time, the destination closes the file. Enter a number to specify a value in seconds. You can also use the MINUTES or HOURS constants in an expression. Use -1 to opt out of a timeout.","required":true,"label":"Idle Timeout","mode":"text/plain","elDefs":null,"evaluation":"EXPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.fileType":["SEQUENCE_FILE","TEXT"]},"dependsOn":"","group":"OUTPUT_FILES","fieldName":"compression","name":"configs.compression","type":"MODEL","defaultValue":"NONE","max":9223372036854776000,"model":{"values":["NONE","GZIP","BZIP2","SNAPPY","LZ4","OTHER"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.stage.destination.hdfs.CompressionChooserValues","filteringConfig":"","labels":["None","Gzip","Bzip2","Snappy","LZ4","Other..."]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":160,"connectionType":"","displayMode":"ADVANCED","description":"","required":true,"label":"Compression Codec","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.fileType":["SEQUENCE_FILE","TEXT"],"configs.compression":["OTHER"]},"dependsOn":"","group":"OUTPUT_FILES","fieldName":"otherCompression","name":"configs.otherCompression","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":170,"connectionType":"","displayMode":"ADVANCED","description":"Use the full class name","required":true,"label":"Compression Codec Class","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"OUTPUT_FILES","fieldName":"fileType","name":"configs.fileType","type":"MODEL","defaultValue":"TEXT","max":9223372036854776000,"model":{"values":["TEXT","SEQUENCE_FILE","WHOLE_FILE"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.stage.destination.hdfs.FileTypeChooserValues","filteringConfig":"","labels":["Text files","Sequence files","Whole File"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":100,"connectionType":"","displayMode":"ADVANCED","description":"","required":true,"label":"File Type","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.fileType":["SEQUENCE_FILE"]},"dependsOn":"","group":"OUTPUT_FILES","fieldName":"keyEl","name":"configs.keyEl","type":"STRING","defaultValue":"${uuid()}","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63","175","176","177","178","179","180","181","182","183","184","185","186","187","188","189","190","191","192","193","194","195","196","197","198","199","200","201","202","203","204","205","259"],"elConstantDefinitionsIdx":["64","235","236","237","238","239","240","241","242","243","244","245","246","247","248","249","250","251"],"displayPosition":180,"connectionType":"","displayMode":"ADVANCED","description":"Record key for creating Hadoop sequence files. Valid options are '${record:value(\"<field-path>\")}' or '${uuid()}'","required":true,"label":"Sequence File Key","mode":"text/plain","elDefs":null,"evaluation":"EXPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"LATE_RECORDS","fieldName":"lateRecordsLimit","name":"configs.lateRecordsLimit","type":"STRING","defaultValue":"${1 * HOURS}","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63","212","213","214","215","216","217","218","219"],"elConstantDefinitionsIdx":["64","252","253","254"],"displayPosition":200,"connectionType":"","displayMode":"ADVANCED","description":"Time limit (in seconds) for a record to be written to the corresponding directory, if the limit is exceeded the record will be written to the current late records file. If a number is used it is considered seconds, it can be multiplied by 'MINUTES' or 'HOURS', ie: '${30 * MINUTES}'","required":true,"label":"Late Record Time Limit (secs)","mode":"text/plain","elDefs":null,"evaluation":"EXPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"OUTPUT_FILES","fieldName":"rollIfHeader","name":"configs.rollIfHeader","type":"BOOLEAN","defaultValue":false,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":204,"connectionType":"","displayMode":"ADVANCED","description":"Closes the current file and creates a new file when processing a record with the specified roll attribute","required":true,"label":"Use Roll Attribute","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.rollIfHeader":[true]},"dependsOn":"","group":"OUTPUT_FILES","fieldName":"rollHeaderName","name":"configs.rollHeaderName","type":"STRING","defaultValue":"roll","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":205,"connectionType":"","displayMode":"ADVANCED","description":"Name of the roll attribute","required":true,"label":"Roll Attribute Name","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"LATE_RECORDS","fieldName":"lateRecordsAction","name":"configs.lateRecordsAction","type":"MODEL","defaultValue":"SEND_TO_ERROR","max":9223372036854776000,"model":{"values":["SEND_TO_ERROR","SEND_TO_LATE_RECORDS_FILE"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.stage.destination.hdfs.LateRecordsActionChooserValues","filteringConfig":"","labels":["Send to error","Send to late records file"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":210,"connectionType":"","displayMode":"ADVANCED","description":"Action for records considered late.","required":true,"label":"Late Record Handling","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.lateRecordsAction":["SEND_TO_LATE_RECORDS_FILE"]},"dependsOn":"","group":"LATE_RECORDS","fieldName":"lateRecordsDirPathTemplate","name":"configs.lateRecordsDirPathTemplate","type":"STRING","defaultValue":"/tmp/late/${YYYY()}-${MM()}-${DD()}","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63","175","176","177","178","179","180","181","182","183","184","185","186","187","188","189","190","191","192","193","194","195","196","197","198","199","200","201","202","203","204","205","212","213","214","215","216","217","218","219"],"elConstantDefinitionsIdx":["64","235","236","237","238","239","240","241","242","243","244","245","246","247","248","249","250","251","252","253","254"],"displayPosition":220,"connectionType":"","displayMode":"ADVANCED","description":"Template for the creation of late record directories. Valid variables are ${YYYY()}, ${MM()}, ${DD()}, ${hh()}, ${mm()}, ${ss()}.","required":false,"label":"Late Record Directory Template","mode":"text/plain","elDefs":null,"evaluation":"EXPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"DATA_FORMAT","fieldName":"dataFormat","name":"configs.dataFormat","type":"MODEL","defaultValue":null,"max":9223372036854776000,"model":{"values":["AVRO","BINARY","DELIMITED","JSON","PROTOBUF","SDC_JSON","TEXT","WHOLE_FILE"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.stage.destination.hdfs.DataFormatChooserValues","filteringConfig":"","labels":["Avro","Binary","Delimited","JSON","Protobuf","SDC Record","Text","Whole File"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":1,"connectionType":"","displayMode":"BASIC","description":"Data Format","required":true,"label":"Data Format","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"OUTPUT_FILES","fieldName":"hdfsPermissionCheck","name":"configs.hdfsPermissionCheck","type":"BOOLEAN","defaultValue":true,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":230,"connectionType":"","displayMode":"ADVANCED","description":"When checked, the destination creates a test file in configured target directory to verify access privileges.","required":true,"label":"Validate Permissions","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.dataFormat":["WHOLE_FILE"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"permissionEL","name":"configs.permissionEL","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63","175","176","177","178","179","180","181","182","183","184","185","186","187","188","189","190","191","192","193","194","195","196","197","198","199","200","201","202","203","204","205"],"elConstantDefinitionsIdx":["64","235","236","237","238","239","240","241","242","243","244","245","246","247","248","249","250","251"],"displayPosition":460,"connectionType":"","displayMode":"ADVANCED","description":"Expression that determines the target file permissions.Should be a octal/symbolic representation of the permissions.","required":false,"label":"Permissions Expression","mode":"text/plain","elDefs":null,"evaluation":"EXPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"OUTPUT_FILES","fieldName":"skipOldTempFileRecovery","name":"configs.skipOldTempFileRecovery","type":"BOOLEAN","defaultValue":false,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":1000,"connectionType":"","displayMode":"ADVANCED","description":"Set to true to skip finding old temporary files that were written to and automatically recover them.","required":true,"label":"Skip file recovery","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.dataFormat":["TEXT","JSON","DELIMITED"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"charset","name":"configs.dataGeneratorFormatConfig.charset","type":"MODEL","defaultValue":"UTF-8","max":9223372036854776000,"model":{"values":["UTF-8","US-ASCII","UTF-16","ISO-8859-1","IBM-500","GBK","Big5","Big5-HKSCS","CESU-8","EUC-JP","EUC-KR","GB18030","GB2312","IBM-Thai","IBM00858","IBM01140","IBM01141","IBM01142","IBM01143","IBM01144","IBM01145","IBM01146","IBM01147","IBM01148","IBM01149","IBM037","IBM1026","IBM1047","IBM273","IBM277","IBM278","IBM280","IBM284","IBM285","IBM290","IBM297","IBM420","IBM424","IBM437","IBM500","IBM775","IBM850","IBM852","IBM855","IBM857","IBM860","IBM861","IBM862","IBM863","IBM864","IBM865","IBM866","IBM868","IBM869","IBM870","IBM871","IBM918","ISO-2022-CN","ISO-2022-JP","ISO-2022-JP-2","ISO-2022-KR","ISO-8859-13","ISO-8859-15","ISO-8859-2","ISO-8859-3","ISO-8859-4","ISO-8859-5","ISO-8859-6","ISO-8859-7","ISO-8859-8","ISO-8859-9","JIS_X0201","JIS_X0212-1990","KOI8-R","KOI8-U","Shift_JIS","TIS-620","UTF-16BE","UTF-16LE","UTF-32","UTF-32BE","UTF-32LE","windows-1250","windows-1251","windows-1252","windows-1253","windows-1254","windows-1255","windows-1256","windows-1257","windows-1258","windows-31j","x-Big5-HKSCS-2001","x-Big5-Solaris","x-COMPOUND_TEXT","x-euc-jp-linux","x-EUC-TW","x-eucJP-Open","x-IBM1006","x-IBM1025","x-IBM1046","x-IBM1097","x-IBM1098","x-IBM1112","x-IBM1122","x-IBM1123","x-IBM1124","x-IBM1166","x-IBM1364","x-IBM1381","x-IBM1383","x-IBM300","x-IBM33722","x-IBM737","x-IBM833","x-IBM834","x-IBM856","x-IBM874","x-IBM875","x-IBM921","x-IBM922","x-IBM930","x-IBM933","x-IBM935","x-IBM937","x-IBM939","x-IBM942","x-IBM942C","x-IBM943","x-IBM943C","x-IBM948","x-IBM949","x-IBM949C","x-IBM950","x-IBM964","x-IBM970","x-ISCII91","x-ISO-2022-CN-CNS","x-ISO-2022-CN-GB","x-iso-8859-11","x-JIS0208","x-JISAutoDetect","x-Johab","x-MacArabic","x-MacCentralEurope","x-MacCroatian","x-MacCyrillic","x-MacDingbat","x-MacGreek","x-MacHebrew","x-MacIceland","x-MacRoman","x-MacRomania","x-MacSymbol","x-MacThai","x-MacTurkish","x-MacUkraine","x-MS932_0213","x-MS950-HKSCS","x-MS950-HKSCS-XP","x-mswin-936","x-PCK","x-SJIS_0213","x-UTF-16LE-BOM","X-UTF-32BE-BOM","X-UTF-32LE-BOM","x-windows-50220","x-windows-50221","x-windows-874","x-windows-949","x-windows-950","x-windows-iso2022jp"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.config.CharsetChooserValues","filteringConfig":"","labels":["UTF-8","US-ASCII","UTF-16","ISO-8859-1","IBM-500","GBK","Big5","Big5-HKSCS","CESU-8","EUC-JP","EUC-KR","GB18030","GB2312","IBM-Thai","IBM00858","IBM01140","IBM01141","IBM01142","IBM01143","IBM01144","IBM01145","IBM01146","IBM01147","IBM01148","IBM01149","IBM037","IBM1026","IBM1047","IBM273","IBM277","IBM278","IBM280","IBM284","IBM285","IBM290","IBM297","IBM420","IBM424","IBM437","IBM500","IBM775","IBM850","IBM852","IBM855","IBM857","IBM860","IBM861","IBM862","IBM863","IBM864","IBM865","IBM866","IBM868","IBM869","IBM870","IBM871","IBM918","ISO-2022-CN","ISO-2022-JP","ISO-2022-JP-2","ISO-2022-KR","ISO-8859-13","ISO-8859-15","ISO-8859-2","ISO-8859-3","ISO-8859-4","ISO-8859-5","ISO-8859-6","ISO-8859-7","ISO-8859-8","ISO-8859-9","JIS_X0201","JIS_X0212-1990","KOI8-R","KOI8-U","Shift_JIS","TIS-620","UTF-16BE","UTF-16LE","UTF-32","UTF-32BE","UTF-32LE","windows-1250","windows-1251","windows-1252","windows-1253","windows-1254","windows-1255","windows-1256","windows-1257","windows-1258","windows-31j","x-Big5-HKSCS-2001","x-Big5-Solaris","x-COMPOUND_TEXT","x-euc-jp-linux","x-EUC-TW","x-eucJP-Open","x-IBM1006","x-IBM1025","x-IBM1046","x-IBM1097","x-IBM1098","x-IBM1112","x-IBM1122","x-IBM1123","x-IBM1124","x-IBM1166","x-IBM1364","x-IBM1381","x-IBM1383","x-IBM300","x-IBM33722","x-IBM737","x-IBM833","x-IBM834","x-IBM856","x-IBM874","x-IBM875","x-IBM921","x-IBM922","x-IBM930","x-IBM933","x-IBM935","x-IBM937","x-IBM939","x-IBM942","x-IBM942C","x-IBM943","x-IBM943C","x-IBM948","x-IBM949","x-IBM949C","x-IBM950","x-IBM964","x-IBM970","x-ISCII91","x-ISO-2022-CN-CNS","x-ISO-2022-CN-GB","x-iso-8859-11","x-JIS0208","x-JISAutoDetect","x-Johab","x-MacArabic","x-MacCentralEurope","x-MacCroatian","x-MacCyrillic","x-MacDingbat","x-MacGreek","x-MacHebrew","x-MacIceland","x-MacRoman","x-MacRomania","x-MacSymbol","x-MacThai","x-MacTurkish","x-MacUkraine","x-MS932_0213","x-MS950-HKSCS","x-MS950-HKSCS-XP","x-mswin-936","x-PCK","x-SJIS_0213","x-UTF-16LE-BOM","X-UTF-32BE-BOM","X-UTF-32LE-BOM","x-windows-50220","x-windows-50221","x-windows-874","x-windows-949","x-windows-950","x-windows-iso2022jp"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":1000,"connectionType":"","displayMode":"ADVANCED","description":"","required":true,"label":"Charset","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.dataFormat":["DELIMITED"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"csvFileFormat","name":"configs.dataGeneratorFormatConfig.csvFileFormat","type":"MODEL","defaultValue":"CSV","max":9223372036854776000,"model":{"values":["CSV","RFC4180","EXCEL","MYSQL","TDF","POSTGRES_CSV","POSTGRES_TEXT","CUSTOM","MULTI_CHARACTER"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.config.CsvModeChooserValues","filteringConfig":"","labels":["Default CSV (ignores empty lines)","RFC4180 CSV","MS Excel CSV","MySQL CSV","Tab Separated Values","PostgreSQL CSV","PostgreSQL Text","Custom","Multi Character Delimited"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":310,"connectionType":"","displayMode":"BASIC","description":"","required":false,"label":"Delimiter Format","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.dataFormat":["DELIMITED"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"csvHeader","name":"configs.dataGeneratorFormatConfig.csvHeader","type":"MODEL","defaultValue":"NO_HEADER","max":9223372036854776000,"model":{"values":["WITH_HEADER","IGNORE_HEADER","NO_HEADER"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.config.CsvHeaderChooserValues","filteringConfig":"","labels":["With Header Line","Ignore Header Line","No Header Line"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":320,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Header Line","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.dataFormat":["DELIMITED"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"csvReplaceNewLines","name":"configs.dataGeneratorFormatConfig.csvReplaceNewLines","type":"BOOLEAN","defaultValue":true,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":330,"connectionType":"","displayMode":"ADVANCED","description":"Replaces new lines characters with configured string constant","required":false,"label":"Replace New Line Characters","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.dataFormat":["DELIMITED"],"configs.dataGeneratorFormatConfig.csvReplaceNewLines":[true]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"csvReplaceNewLinesString","name":"configs.dataGeneratorFormatConfig.csvReplaceNewLinesString","type":"STRING","defaultValue":" ","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":335,"connectionType":"","displayMode":"ADVANCED","description":"String that will be used to substitute new line characters. Using empty string will remove the new line characters.","required":false,"label":"New Line Character Replacement","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.dataFormat":["DELIMITED"],"configs.dataGeneratorFormatConfig.csvFileFormat":["CUSTOM"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"csvCustomDelimiter","name":"configs.dataGeneratorFormatConfig.csvCustomDelimiter","type":"CHARACTER","defaultValue":"|","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":340,"connectionType":"","displayMode":"BASIC","description":"","required":false,"label":"Delimiter Character","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.dataFormat":["DELIMITED"],"configs.dataGeneratorFormatConfig.csvFileFormat":["CUSTOM"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"csvCustomEscape","name":"configs.dataGeneratorFormatConfig.csvCustomEscape","type":"CHARACTER","defaultValue":"\\","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":350,"connectionType":"","displayMode":"BASIC","description":"","required":false,"label":"Escape Character","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.dataFormat":["DELIMITED"],"configs.dataGeneratorFormatConfig.csvFileFormat":["CUSTOM"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"csvCustomQuote","name":"configs.dataGeneratorFormatConfig.csvCustomQuote","type":"CHARACTER","defaultValue":"\"","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":360,"connectionType":"","displayMode":"BASIC","description":"","required":false,"label":"Quote Character","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.dataFormat":["DELIMITED"],"configs.dataGeneratorFormatConfig.csvFileFormat":["CUSTOM"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"csvQuoteMode","name":"configs.dataGeneratorFormatConfig.csvQuoteMode","type":"MODEL","defaultValue":"MINIMAL","max":9223372036854776000,"model":{"values":["ALL","MINIMAL","NONE"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.stage.destination.lib.DelimitedQuoteModeValueChooser","filteringConfig":"","labels":["Quote all fields","Quote only fields that contain special characters","Never quote"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":365,"connectionType":"","displayMode":"BASIC","description":"","required":false,"label":"Quote Mode","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.dataFormat":["JSON"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"jsonMode","name":"configs.dataGeneratorFormatConfig.jsonMode","type":"MODEL","defaultValue":"MULTIPLE_OBJECTS","max":9223372036854776000,"model":{"values":["ARRAY_OBJECTS","MULTIPLE_OBJECTS"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.config.JsonModeChooserValues","filteringConfig":"","labels":["JSON array of objects","Multiple JSON objects"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":370,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"JSON Content","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.dataFormat":["TEXT"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"textFieldPath","name":"configs.dataGeneratorFormatConfig.textFieldPath","type":"MODEL","defaultValue":"/text","max":9223372036854776000,"model":{"values":null,"configDefinitions":null,"modelType":"FIELD_SELECTOR","valuesProviderClass":null,"filteringConfig":null,"labels":null},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":380,"connectionType":"","displayMode":"BASIC","description":"String field that will be written to the destination","required":true,"label":"Text Field Path","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.dataFormat":["TEXT"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"textRecordSeparator","name":"configs.dataGeneratorFormatConfig.textRecordSeparator","type":"STRING","defaultValue":"\\n","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":385,"connectionType":"","displayMode":"BASIC","description":"Value to insert in output between records, defaults to newline","required":false,"label":"Record Separator","mode":"text/plain","elDefs":null,"evaluation":"EXPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.dataFormat":["TEXT"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"textFieldMissingAction","name":"configs.dataGeneratorFormatConfig.textFieldMissingAction","type":"MODEL","defaultValue":"ERROR","max":9223372036854776000,"model":{"values":["IGNORE","ERROR"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.config.TextFieldMissingActionChooserValues","filteringConfig":"","labels":["Ignore the error","Report error"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":387,"connectionType":"","displayMode":"ADVANCED","description":"","required":true,"label":"On Missing Field","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.dataGeneratorFormatConfig.textFieldMissingAction":["IGNORE"],"configs.dataFormat":["TEXT"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"textEmptyLineIfNull","name":"configs.dataGeneratorFormatConfig.textEmptyLineIfNull","type":"BOOLEAN","defaultValue":false,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":390,"connectionType":"","displayMode":"ADVANCED","description":"Specifies whether a record separator should be inserted in output even after an empty value (no text in field)","required":true,"label":"Insert Record Separator If No Text","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.dataFormat":["AVRO"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"avroSchemaSource","name":"configs.dataGeneratorFormatConfig.avroSchemaSource","type":"MODEL","defaultValue":null,"max":9223372036854776000,"model":{"values":["INLINE","HEADER","REGISTRY"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.config.DestinationAvroSchemaSourceChooserValues","filteringConfig":"","labels":["In Pipeline Configuration","In Record Header","Confluent Schema Registry"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":400,"connectionType":"","displayMode":"BASIC","description":"Where to load the Avro Schema from.","required":true,"label":"Avro Schema Location","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.dataFormat":["AVRO"],"configs.dataGeneratorFormatConfig.avroSchemaSource":["INLINE"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"avroSchema","name":"configs.dataGeneratorFormatConfig.avroSchema","type":"TEXT","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":410,"connectionType":"","displayMode":"BASIC","description":"Overrides the schema included in the data (if any). Optionally use the runtime:loadResource function to use a schema stored in a file","required":false,"label":"Avro Schema","mode":"application/json","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.dataFormat":["AVRO"],"configs.dataGeneratorFormatConfig.avroSchemaSource":["HEADER","INLINE"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"registerSchema","name":"configs.dataGeneratorFormatConfig.registerSchema","type":"BOOLEAN","defaultValue":false,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":420,"connectionType":"","displayMode":"ADVANCED","description":"Register the Avro schema in the Confluent Schema Registry","required":true,"label":"Register Schema","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.dataGeneratorFormatConfig.registerSchema":[true],"configs.dataFormat":["AVRO"],"configs.dataGeneratorFormatConfig.avroSchemaSource":["HEADER","INLINE"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"schemaRegistryUrlsForRegistration","name":"configs.dataGeneratorFormatConfig.schemaRegistryUrlsForRegistration","type":"LIST","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":430,"connectionType":"","displayMode":"ADVANCED","description":"List of Confluent Schema Registry URLs","required":true,"label":"Schema Registry URLs","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.dataFormat":["AVRO"],"configs.dataGeneratorFormatConfig.avroSchemaSource":["REGISTRY"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"schemaRegistryUrls","name":"configs.dataGeneratorFormatConfig.schemaRegistryUrls","type":"LIST","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":431,"connectionType":"","displayMode":"ADVANCED","description":"List of Confluent Schema Registry URLs","required":true,"label":"Schema Registry URLs","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.dataFormat":["AVRO"],"configs.dataGeneratorFormatConfig.avroSchemaSource":["REGISTRY"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"basicAuthUserInfo","name":"configs.dataGeneratorFormatConfig.basicAuthUserInfo","type":"CREDENTIAL","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63","65","66","67","68"],"elConstantDefinitionsIdx":["64"],"displayPosition":432,"connectionType":"","displayMode":"ADVANCED","description":"","required":false,"label":"Basic Auth User Info","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.dataFormat":["AVRO"],"configs.dataGeneratorFormatConfig.avroSchemaSource":["REGISTRY"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"schemaLookupMode","name":"configs.dataGeneratorFormatConfig.schemaLookupMode","type":"MODEL","defaultValue":"SUBJECT","max":9223372036854776000,"model":{"values":["SUBJECT","ID"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.config.DestinationAvroSchemaLookupModeChooserValues","filteringConfig":"","labels":["Subject","Schema ID"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":440,"connectionType":"","displayMode":"ADVANCED","description":"Whether to look up the Avro Schema by ID or fetch the latest schema for a Subject.","required":true,"label":"Lookup Schema By","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.dataFormat":["AVRO"],"configs.dataGeneratorFormatConfig.schemaLookupMode":["SUBJECT"],"configs.dataGeneratorFormatConfig.avroSchemaSource":["REGISTRY"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"subject","name":"configs.dataGeneratorFormatConfig.subject","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":450,"connectionType":"","displayMode":"ADVANCED","description":"","required":true,"label":"Schema Subject","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.dataGeneratorFormatConfig.registerSchema":[true],"configs.dataFormat":["AVRO"],"configs.dataGeneratorFormatConfig.avroSchemaSource":["HEADER","INLINE"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"subjectToRegister","name":"configs.dataGeneratorFormatConfig.subjectToRegister","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":451,"connectionType":"","displayMode":"ADVANCED","description":"If this and Schema Registry URLs are non-empty, will register the supplied schema.","required":true,"label":"Schema Subject","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.dataGeneratorFormatConfig.registerSchema":[true],"configs.dataFormat":["AVRO"],"configs.dataGeneratorFormatConfig.avroSchemaSource":["HEADER","INLINE"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"basicAuthUserInfoForRegistration","name":"configs.dataGeneratorFormatConfig.basicAuthUserInfoForRegistration","type":"CREDENTIAL","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63","65","66","67","68"],"elConstantDefinitionsIdx":["64"],"displayPosition":452,"connectionType":"","displayMode":"ADVANCED","description":"","required":false,"label":"Basic Auth User Info","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":1,"dependsOnMap":{"configs.dataFormat":["AVRO"],"configs.dataGeneratorFormatConfig.schemaLookupMode":["ID"],"configs.dataGeneratorFormatConfig.avroSchemaSource":["REGISTRY"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"schemaId","name":"configs.dataGeneratorFormatConfig.schemaId","type":"NUMBER","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":460,"connectionType":"","displayMode":"ADVANCED","description":"","required":true,"label":"Schema ID","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.dataFormat":["AVRO"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"avroCompression","name":"configs.dataGeneratorFormatConfig.avroCompression","type":"MODEL","defaultValue":"NULL","max":9223372036854776000,"model":{"values":["NULL","SNAPPY","BZIP2","DEFLATE"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.config.AvroCompressionChooserValues","filteringConfig":"","labels":["None","Snappy","Bzip2","Deflate"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":480,"connectionType":"","displayMode":"ADVANCED","description":"","required":true,"label":"Avro Compression Codec","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.dataFormat":["BINARY"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"binaryFieldPath","name":"configs.dataGeneratorFormatConfig.binaryFieldPath","type":"MODEL","defaultValue":"/","max":9223372036854776000,"model":{"values":null,"configDefinitions":null,"modelType":"FIELD_SELECTOR","valuesProviderClass":null,"filteringConfig":null,"labels":null},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":420,"connectionType":"","displayMode":"BASIC","description":"Output field to contain the binary data","required":true,"label":"Binary Field Path","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.dataFormat":["PROTOBUF"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"protoDescriptorFile","name":"configs.dataGeneratorFormatConfig.protoDescriptorFile","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":430,"connectionType":"","displayMode":"BASIC","description":"Protobuf Descriptor File (.desc) path relative to SDC resources directory","required":true,"label":"Protobuf Descriptor File","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.dataFormat":["PROTOBUF"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"messageType","name":"configs.dataGeneratorFormatConfig.messageType","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":440,"connectionType":"","displayMode":"BASIC","description":"Fully Qualified Message Type name. Use format <packageName>.<messageTypeName>","required":true,"label":"Message Type","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.dataFormat":["WHOLE_FILE"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"fileNameEL","name":"configs.dataGeneratorFormatConfig.fileNameEL","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63","175","176","177","178","179","180","181","182","183","184","185","186","187","188","189","190","191","192","193","194","195","196","197","198","199","200","201","202","203","204","205","206","207","208","209","210","211"],"elConstantDefinitionsIdx":["64","235","236","237","238","239","240","241","242","243","244","245","246","247","248","249","250","251"],"displayPosition":450,"connectionType":"","displayMode":"BASIC","description":"File Name Expression","required":true,"label":"File Name Expression","mode":"text/plain","elDefs":null,"evaluation":"EXPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.dataFormat":["WHOLE_FILE"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"wholeFileExistsAction","name":"configs.dataGeneratorFormatConfig.wholeFileExistsAction","type":"MODEL","defaultValue":"TO_ERROR","max":9223372036854776000,"model":{"values":["TO_ERROR","OVERWRITE"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.config.WholeFileExistsActionChooserValues","filteringConfig":"","labels":["Send to Error","Overwrite"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":470,"connectionType":"","displayMode":"BASIC","description":"The action to perform when the file already exists.","required":true,"label":"File Exists","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.dataFormat":["WHOLE_FILE"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"includeChecksumInTheEvents","name":"configs.dataGeneratorFormatConfig.includeChecksumInTheEvents","type":"BOOLEAN","defaultValue":false,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":480,"connectionType":"","displayMode":"ADVANCED","description":"Includes checksum information in whole file transfer events.","required":true,"label":"Include Checksum in Events","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.dataGeneratorFormatConfig.includeChecksumInTheEvents":[true],"configs.dataFormat":["WHOLE_FILE"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"checksumAlgorithm","name":"configs.dataGeneratorFormatConfig.checksumAlgorithm","type":"MODEL","defaultValue":"MD5","max":9223372036854776000,"model":{"values":["MD5","SHA1","SHA256","SHA512","MURMUR3_32","MURMUR3_128"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.config.ChecksumAlgorithmChooserValues","filteringConfig":"","labels":["MD5","SHA1","SHA256","SHA512","MURMUR3_32","MURMUR3_128"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":490,"connectionType":"","displayMode":"ADVANCED","description":"The checksum algorithm for calculating checksum for the file.","required":true,"label":"Checksum Algorithm","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.dataFormat":["XML"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"xmlPrettyPrint","name":"configs.dataGeneratorFormatConfig.xmlPrettyPrint","type":"BOOLEAN","defaultValue":true,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":500,"connectionType":"","displayMode":"BASIC","description":"Format XML with human readable indentation (requires more bytes on output).","required":true,"label":"Pretty Format","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.dataFormat":["XML"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"xmlValidateSchema","name":"configs.dataGeneratorFormatConfig.xmlValidateSchema","type":"BOOLEAN","defaultValue":false,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":510,"connectionType":"","displayMode":"ADVANCED","description":"Validate that resulting record corresponds to given schema(s).","required":true,"label":"Validate Schema","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"configs.dataFormat":["XML"],"configs.dataGeneratorFormatConfig.xmlValidateSchema":[true]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"xmlSchema","name":"configs.dataGeneratorFormatConfig.xmlSchema","type":"TEXT","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":520,"connectionType":"","displayMode":"ADVANCED","description":"XML schema that should be used to validate serialized record.","required":false,"label":"XML Schema","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"","fieldName":"stageOnRecordError","name":"stageOnRecordError","type":"MODEL","defaultValue":"TO_ERROR","max":9223372036854776000,"model":{"values":["DISCARD","TO_ERROR","STOP_PIPELINE"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.datacollector.config.OnRecordErrorChooserValues","filteringConfig":"","labels":["Discard","Send to Error","Stop Pipeline"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":30,"connectionType":"","displayMode":"ADVANCED","description":"Action to take with records sent to error","required":true,"label":"On Record Error","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"","fieldName":"stageRequiredFields","name":"stageRequiredFields","type":"MODEL","defaultValue":null,"max":9223372036854776000,"model":{"values":null,"configDefinitions":null,"modelType":"FIELD_SELECTOR_MULTI_VALUE","valuesProviderClass":null,"filteringConfig":null,"labels":null},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":10,"connectionType":"","displayMode":"ADVANCED","description":"Records without any of these fields are sent to error","required":false,"label":"Required Fields","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"","fieldName":"stageRecordPreconditions","name":"stageRecordPreconditions","type":"LIST","defaultValue":[],"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63","69","70","71","72","73","74","75","76","77","78","79","80","81","82","83","84","85","86","87","88","89","90","91","92","93","94","95","96","97","98","99"],"elConstantDefinitionsIdx":["64","100","101","102","103","104","105","106","107","108","109","110","111","112","113","114","115","116"],"displayPosition":20,"connectionType":"","displayMode":"ADVANCED","description":"Records that don't satisfy all the preconditions are sent to error","required":false,"label":"Preconditions","mode":"text/plain","elDefs":null,"evaluation":"EXPLICIT"}],"icon":"localfilesystem.png","description":"Writes to the local file system","statsAggregatorStage":false,"privateClassLoader":false,"services":[],"eventDefs":["com.streamsets.pipeline.lib.event.WholeFileProcessedEvent"],"library":"streamsets-datacollector-basic-lib","label":"Local FS","libraryLabel":"Basic","pipelineLifecycleStage":false,"errorStage":false,"onRecordError":true,"producingEvents":true,"preconditions":true},{"configGroupDefinition":{"classNameToGroupsMap":{"com.streamsets.pipeline.stage.destination.recordstolocalfilesystem.Groups":["FILES"]},"groupNameToLabelMapList":[{"name":"FILES","label":"Files"}]},"beta":false,"rawSourceDefinition":null,"connectionVerifierStage":false,"offsetCommitTrigger":false,"variableOutputStreams":false,"outputStreams":0,"outputStreamLabelProviderClass":null,"outputStreamLabels":null,"executionModes":["STANDALONE"],"resetOffset":false,"onlineHelpRefUrl":"index.html?contextID=task_e33_3v5_1r","hideStage":["ERROR_STAGE"],"outputStreamsDrivenByConfig":"","sendsResponse":false,"inputStreams":-1,"inputStreamLabelProviderClass":"com.streamsets.pipeline.api.StageDef$DefaultInputStreams","inputStreamLabels":null,"bisectable":false,"yamlUpgrader":"upgrader/ToErrorLocalFSDTarget.yaml","name":"com_streamsets_pipeline_stage_destination_recordstolocalfilesystem_ToErrorLocalFSDTarget","type":"TARGET","className":"com.streamsets.pipeline.stage.destination.recordstolocalfilesystem.ToErrorLocalFSDTarget","version":"1","configDefinitions":[{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"FILES","fieldName":"directory","name":"directory","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":10,"connectionType":"","displayMode":"BASIC","description":"Directory to write records","required":true,"label":"Directory","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"FILES","fieldName":"uniquePrefix","name":"uniquePrefix","type":"STRING","defaultValue":"sdc-${sdc:id()}","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63","117"],"elConstantDefinitionsIdx":["64"],"displayPosition":20,"connectionType":"","displayMode":"BASIC","description":"File name prefix","required":false,"label":"Files Prefix","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"FILES","fieldName":"rotationIntervalSecs","name":"rotationIntervalSecs","type":"STRING","defaultValue":"${1 * HOURS}","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63","212","213","214","215","216","217","218","219"],"elConstantDefinitionsIdx":["64","252","253","254"],"displayPosition":30,"connectionType":"","displayMode":"ADVANCED","description":"Max time to wait for error records before creating a new error file. \nEnter the time in seconds or use the default expression to enter the time limit in minutes. You can also use HOURS in the expression to enter the limit in hours.","required":true,"label":"File Wait Time (secs)","mode":"text/plain","elDefs":null,"evaluation":"EXPLICIT"},{"min":0,"dependsOnMap":{},"dependsOn":"","group":"FILES","fieldName":"maxFileSizeMbs","name":"maxFileSizeMbs","type":"NUMBER","defaultValue":512,"max":2147483647,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":40,"connectionType":"","displayMode":"ADVANCED","description":"Max file size to trigger the creation of a new file. Use 0 to opt out.","required":true,"label":"Max File Size (MB)","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"}],"icon":"","description":"Writes records to a local File System as SDC records","statsAggregatorStage":false,"privateClassLoader":false,"services":[],"eventDefs":[],"library":"streamsets-datacollector-basic-lib","label":"Write to File","libraryLabel":"Basic","pipelineLifecycleStage":false,"errorStage":true,"onRecordError":false,"producingEvents":false,"preconditions":false},{"configGroupDefinition":{"classNameToGroupsMap":{"com.streamsets.pipeline.stage.devtest.rawdata.RawDataSourceGroups":["RAW","EVENT"]},"groupNameToLabelMapList":[{"name":"RAW","label":"Raw Data"},{"name":"EVENT","label":"Event Data"}]},"beta":false,"rawSourceDefinition":null,"connectionVerifierStage":false,"offsetCommitTrigger":false,"variableOutputStreams":false,"outputStreams":1,"outputStreamLabelProviderClass":"com.streamsets.pipeline.api.StageDef$DefaultOutputStreams","outputStreamLabels":null,"executionModes":["STANDALONE","EDGE"],"resetOffset":false,"onlineHelpRefUrl":"index.html#datacollector/UserGuide/Pipeline_Design/DevStages.html","hideStage":[],"outputStreamsDrivenByConfig":"","sendsResponse":false,"inputStreams":-1,"inputStreamLabelProviderClass":"com.streamsets.pipeline.api.StageDef$DefaultInputStreams","inputStreamLabels":null,"bisectable":false,"yamlUpgrader":"upgrader/RawDataDSource.yaml","name":"com_streamsets_pipeline_stage_devtest_rawdata_RawDataDSource","type":"SOURCE","className":"com.streamsets.pipeline.stage.devtest.rawdata.RawDataDSource","version":"3","configDefinitions":[{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"RAW","fieldName":"rawData","name":"rawData","type":"TEXT","defaultValue":"{\n \"f1\": \"abc\",\n \"f2\": \"xyz\",\n \"f3\": \"lmn\"\n}","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":1,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Raw Data","mode":"application/json","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"RAW","fieldName":"stopAfterFirstBatch","name":"stopAfterFirstBatch","type":"BOOLEAN","defaultValue":false,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":2,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Stop After First Batch","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"EVENT","fieldName":"eventData","name":"eventData","type":"TEXT","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":20,"connectionType":"","displayMode":"BASIC","description":"","required":false,"label":"Event Data","mode":"application/json","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"","fieldName":"stageOnRecordError","name":"stageOnRecordError","type":"MODEL","defaultValue":"TO_ERROR","max":9223372036854776000,"model":{"values":["DISCARD","TO_ERROR","STOP_PIPELINE"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.datacollector.config.OnRecordErrorChooserValues","filteringConfig":"","labels":["Discard","Send to Error","Stop Pipeline"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":30,"connectionType":"","displayMode":"ADVANCED","description":"Action to take with records sent to error","required":true,"label":"On Record Error","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"}],"icon":"dev.png","description":"Add Raw data to the source.","statsAggregatorStage":false,"privateClassLoader":false,"services":[{"service":"com.streamsets.pipeline.api.service.dataformats.DataFormatParserService","configuration":{"displayFormats":"DELIMITED,JSON,LOG,SDC_JSON,TEXT,XML","dataFormat":"JSON"}}],"eventDefs":[],"library":"streamsets-datacollector-dev-lib","label":"Dev Raw Data Source","libraryLabel":"Dev (for development only)","pipelineLifecycleStage":false,"errorStage":false,"onRecordError":true,"producingEvents":true,"preconditions":false},{"configGroupDefinition":{"classNameToGroupsMap":{},"groupNameToLabelMapList":[]},"beta":false,"rawSourceDefinition":null,"connectionVerifierStage":false,"offsetCommitTrigger":false,"variableOutputStreams":false,"outputStreams":0,"outputStreamLabelProviderClass":null,"outputStreamLabels":null,"executionModes":["STANDALONE","CLUSTER_BATCH","CLUSTER_YARN_STREAMING","CLUSTER_MESOS_STREAMING","EMR_BATCH","EDGE"],"resetOffset":false,"onlineHelpRefUrl":"","hideStage":["STATS_AGGREGATOR_STAGE"],"outputStreamsDrivenByConfig":"","sendsResponse":false,"inputStreams":-1,"inputStreamLabelProviderClass":"com.streamsets.pipeline.api.StageDef$DefaultInputStreams","inputStreamLabels":null,"bisectable":false,"yamlUpgrader":"upgrader/StatsDpmDirectlyDTarget.yaml","name":"com_streamsets_pipeline_stage_destination_devnull_StatsDpmDirectlyDTarget","type":"TARGET","className":"com.streamsets.pipeline.stage.destination.devnull.StatsDpmDirectlyDTarget","version":"1","configDefinitions":[],"icon":"","description":"Writes pipeline statistics to Control Hub directly without any aggregation","statsAggregatorStage":true,"privateClassLoader":false,"services":[],"eventDefs":[],"library":"streamsets-datacollector-basic-lib","label":"Write Directly to Control Hub - statistics are not aggregated across Data Collectors","libraryLabel":"Basic","pipelineLifecycleStage":false,"errorStage":false,"onRecordError":false,"producingEvents":false,"preconditions":false},{"configGroupDefinition":{"classNameToGroupsMap":{},"groupNameToLabelMapList":[]},"beta":false,"rawSourceDefinition":null,"connectionVerifierStage":false,"offsetCommitTrigger":false,"variableOutputStreams":false,"outputStreams":0,"outputStreamLabelProviderClass":null,"outputStreamLabels":null,"executionModes":["STANDALONE","CLUSTER_BATCH","CLUSTER_YARN_STREAMING","CLUSTER_MESOS_STREAMING","EDGE","EMR_BATCH"],"resetOffset":false,"onlineHelpRefUrl":"index.html?contextID=concept_kgc_l4y_5r","hideStage":["ERROR_STAGE","LIFECYCLE_STAGE"],"outputStreamsDrivenByConfig":"","sendsResponse":false,"inputStreams":-1,"inputStreamLabelProviderClass":"com.streamsets.pipeline.api.StageDef$DefaultInputStreams","inputStreamLabels":null,"bisectable":false,"yamlUpgrader":"upgrader/ToErrorNullDTarget.yaml","name":"com_streamsets_pipeline_stage_destination_devnull_ToErrorNullDTarget","type":"TARGET","className":"com.streamsets.pipeline.stage.destination.devnull.ToErrorNullDTarget","version":"1","configDefinitions":[],"icon":"","description":"Discards records and events","statsAggregatorStage":false,"privateClassLoader":false,"services":[],"eventDefs":[],"library":"streamsets-datacollector-basic-lib","label":"Discard","libraryLabel":"Basic","pipelineLifecycleStage":true,"errorStage":true,"onRecordError":false,"producingEvents":false,"preconditions":false}],"services":[{"configGroupDefinition":{"classNameToGroupsMap":{"com.streamsets.service.parser.Groups":["DATA_FORMAT"]},"groupNameToLabelMapList":[{"name":"DATA_FORMAT","label":"Data Format"}]},"className":"com.streamsets.service.parser.DataParserServiceImpl","version":"3","configDefinitions":[{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"","fieldName":"displayFormats","name":"displayFormats","type":"RUNTIME","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":0,"connectionType":"","displayMode":"BASIC","description":"","required":false,"label":"List of formats that should be displayed to the user.","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"DATA_FORMAT","fieldName":"dataFormat","name":"dataFormat","type":"MODEL","defaultValue":null,"max":9223372036854776000,"model":{"values":["AVRO","BINARY","DATAGRAM","DELIMITED","EXCEL","JSON","LOG","NETFLOW","PROTOBUF","SDC_JSON","SYSLOG","TEXT","WHOLE_FILE","XML"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.service.parser.DataFormatChooserValues","filteringConfig":"displayFormats","labels":["Avro","Binary","Datagram","Delimited","Excel","JSON","Log","Netflow","Protobuf","SDC Record","Syslog","Text","Whole File","XML"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":1,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Data Format","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["BINARY","PROTOBUF","DELIMITED","XML","TEXT","JSON","SDC_JSON","LOG"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"compression","name":"dataFormatConfig.compression","type":"MODEL","defaultValue":"NONE","max":9223372036854776000,"model":{"values":["NONE","COMPRESSED_FILE","ARCHIVE","COMPRESSED_ARCHIVE"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.config.CompressionChooserValues","filteringConfig":"","labels":["None","Compressed File","Archive","Compressed Archive"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":2,"connectionType":"","displayMode":"ADVANCED","description":"Compression formats gzip, bzip2, xz, lzma, Pack200, DEFLATE and Z are supported. Archive formats 7z, ar, arj, cpio, dump, tar and zip are supported.","required":true,"label":"Compression Format","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["BINARY","PROTOBUF","DELIMITED","XML","TEXT","JSON","SDC_JSON","LOG"],"dataFormatConfig.compression":["ARCHIVE","COMPRESSED_ARCHIVE"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"filePatternInArchive","name":"dataFormatConfig.filePatternInArchive","type":"STRING","defaultValue":"*","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":3,"connectionType":"","displayMode":"ADVANCED","description":"A glob pattern that defines the pattern of the file names within the compressed directory.","required":true,"label":"File Name Pattern within Compressed Directory","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["DELIMITED","XML","TEXT","JSON","LOG","DATAGRAM"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"charset","name":"dataFormatConfig.charset","type":"MODEL","defaultValue":"UTF-8","max":9223372036854776000,"model":{"values":["UTF-8","US-ASCII","UTF-16","ISO-8859-1","IBM-500","GBK","Big5","Big5-HKSCS","CESU-8","EUC-JP","EUC-KR","GB18030","GB2312","IBM-Thai","IBM00858","IBM01140","IBM01141","IBM01142","IBM01143","IBM01144","IBM01145","IBM01146","IBM01147","IBM01148","IBM01149","IBM037","IBM1026","IBM1047","IBM273","IBM277","IBM278","IBM280","IBM284","IBM285","IBM290","IBM297","IBM420","IBM424","IBM437","IBM500","IBM775","IBM850","IBM852","IBM855","IBM857","IBM860","IBM861","IBM862","IBM863","IBM864","IBM865","IBM866","IBM868","IBM869","IBM870","IBM871","IBM918","ISO-2022-CN","ISO-2022-JP","ISO-2022-JP-2","ISO-2022-KR","ISO-8859-13","ISO-8859-15","ISO-8859-2","ISO-8859-3","ISO-8859-4","ISO-8859-5","ISO-8859-6","ISO-8859-7","ISO-8859-8","ISO-8859-9","JIS_X0201","JIS_X0212-1990","KOI8-R","KOI8-U","Shift_JIS","TIS-620","UTF-16BE","UTF-16LE","UTF-32","UTF-32BE","UTF-32LE","windows-1250","windows-1251","windows-1252","windows-1253","windows-1254","windows-1255","windows-1256","windows-1257","windows-1258","windows-31j","x-Big5-HKSCS-2001","x-Big5-Solaris","x-COMPOUND_TEXT","x-euc-jp-linux","x-EUC-TW","x-eucJP-Open","x-IBM1006","x-IBM1025","x-IBM1046","x-IBM1097","x-IBM1098","x-IBM1112","x-IBM1122","x-IBM1123","x-IBM1124","x-IBM1166","x-IBM1364","x-IBM1381","x-IBM1383","x-IBM300","x-IBM33722","x-IBM737","x-IBM833","x-IBM834","x-IBM856","x-IBM874","x-IBM875","x-IBM921","x-IBM922","x-IBM930","x-IBM933","x-IBM935","x-IBM937","x-IBM939","x-IBM942","x-IBM942C","x-IBM943","x-IBM943C","x-IBM948","x-IBM949","x-IBM949C","x-IBM950","x-IBM964","x-IBM970","x-ISCII91","x-ISO-2022-CN-CNS","x-ISO-2022-CN-GB","x-iso-8859-11","x-JIS0208","x-JISAutoDetect","x-Johab","x-MacArabic","x-MacCentralEurope","x-MacCroatian","x-MacCyrillic","x-MacDingbat","x-MacGreek","x-MacHebrew","x-MacIceland","x-MacRoman","x-MacRomania","x-MacSymbol","x-MacThai","x-MacTurkish","x-MacUkraine","x-MS932_0213","x-MS950-HKSCS","x-MS950-HKSCS-XP","x-mswin-936","x-PCK","x-SJIS_0213","x-UTF-16LE-BOM","X-UTF-32BE-BOM","X-UTF-32LE-BOM","x-windows-50220","x-windows-50221","x-windows-874","x-windows-949","x-windows-950","x-windows-iso2022jp"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.config.CharsetChooserValues","filteringConfig":"","labels":["UTF-8","US-ASCII","UTF-16","ISO-8859-1","IBM-500","GBK","Big5","Big5-HKSCS","CESU-8","EUC-JP","EUC-KR","GB18030","GB2312","IBM-Thai","IBM00858","IBM01140","IBM01141","IBM01142","IBM01143","IBM01144","IBM01145","IBM01146","IBM01147","IBM01148","IBM01149","IBM037","IBM1026","IBM1047","IBM273","IBM277","IBM278","IBM280","IBM284","IBM285","IBM290","IBM297","IBM420","IBM424","IBM437","IBM500","IBM775","IBM850","IBM852","IBM855","IBM857","IBM860","IBM861","IBM862","IBM863","IBM864","IBM865","IBM866","IBM868","IBM869","IBM870","IBM871","IBM918","ISO-2022-CN","ISO-2022-JP","ISO-2022-JP-2","ISO-2022-KR","ISO-8859-13","ISO-8859-15","ISO-8859-2","ISO-8859-3","ISO-8859-4","ISO-8859-5","ISO-8859-6","ISO-8859-7","ISO-8859-8","ISO-8859-9","JIS_X0201","JIS_X0212-1990","KOI8-R","KOI8-U","Shift_JIS","TIS-620","UTF-16BE","UTF-16LE","UTF-32","UTF-32BE","UTF-32LE","windows-1250","windows-1251","windows-1252","windows-1253","windows-1254","windows-1255","windows-1256","windows-1257","windows-1258","windows-31j","x-Big5-HKSCS-2001","x-Big5-Solaris","x-COMPOUND_TEXT","x-euc-jp-linux","x-EUC-TW","x-eucJP-Open","x-IBM1006","x-IBM1025","x-IBM1046","x-IBM1097","x-IBM1098","x-IBM1112","x-IBM1122","x-IBM1123","x-IBM1124","x-IBM1166","x-IBM1364","x-IBM1381","x-IBM1383","x-IBM300","x-IBM33722","x-IBM737","x-IBM833","x-IBM834","x-IBM856","x-IBM874","x-IBM875","x-IBM921","x-IBM922","x-IBM930","x-IBM933","x-IBM935","x-IBM937","x-IBM939","x-IBM942","x-IBM942C","x-IBM943","x-IBM943C","x-IBM948","x-IBM949","x-IBM949C","x-IBM950","x-IBM964","x-IBM970","x-ISCII91","x-ISO-2022-CN-CNS","x-ISO-2022-CN-GB","x-iso-8859-11","x-JIS0208","x-JISAutoDetect","x-Johab","x-MacArabic","x-MacCentralEurope","x-MacCroatian","x-MacCyrillic","x-MacDingbat","x-MacGreek","x-MacHebrew","x-MacIceland","x-MacRoman","x-MacRomania","x-MacSymbol","x-MacThai","x-MacTurkish","x-MacUkraine","x-MS932_0213","x-MS950-HKSCS","x-MS950-HKSCS-XP","x-mswin-936","x-PCK","x-SJIS_0213","x-UTF-16LE-BOM","X-UTF-32BE-BOM","X-UTF-32LE-BOM","x-windows-50220","x-windows-50221","x-windows-874","x-windows-949","x-windows-950","x-windows-iso2022jp"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":999,"connectionType":"","displayMode":"ADVANCED","description":"","required":true,"label":"Charset","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["DELIMITED","XML","TEXT","JSON","LOG","DATAGRAM"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"removeCtrlChars","name":"dataFormatConfig.removeCtrlChars","type":"BOOLEAN","defaultValue":false,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":1000,"connectionType":"","displayMode":"ADVANCED","description":"Use only if required as it impacts reading performance","required":true,"label":"Ignore Control Characters","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":1,"dependsOnMap":{"dataFormat":["TEXT"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"textMaxLineLen","name":"dataFormatConfig.textMaxLineLen","type":"NUMBER","defaultValue":1024,"max":2147483647,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":340,"connectionType":"","displayMode":"ADVANCED","description":"Longer lines are truncated","required":true,"label":"Max Line Length","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["TEXT"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"useCustomDelimiter","name":"dataFormatConfig.useCustomDelimiter","type":"BOOLEAN","defaultValue":false,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":342,"connectionType":"","displayMode":"ADVANCED","description":"Use custom delimiters to create records","required":true,"label":"Use Custom Delimiter","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["TEXT"],"dataFormatConfig.useCustomDelimiter":[true]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"customDelimiter","name":"dataFormatConfig.customDelimiter","type":"STRING","defaultValue":"\\r\\n","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":344,"connectionType":"","displayMode":"ADVANCED","description":"One or more characters. Leading and trailing spaces are stripped.","required":true,"label":"Custom Delimiter","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["TEXT"],"dataFormatConfig.useCustomDelimiter":[true]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"includeCustomDelimiterInTheText","name":"dataFormatConfig.includeCustomDelimiterInTheText","type":"BOOLEAN","defaultValue":false,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":346,"connectionType":"","displayMode":"ADVANCED","description":"Include custom delimiters in the data","required":true,"label":"Include Custom Delimiter","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["JSON"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"jsonContent","name":"dataFormatConfig.jsonContent","type":"MODEL","defaultValue":"MULTIPLE_OBJECTS","max":9223372036854776000,"model":{"values":["ARRAY_OBJECTS","MULTIPLE_OBJECTS"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.config.JsonModeChooserValues","filteringConfig":"","labels":["JSON array of objects","Multiple JSON objects"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":350,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"JSON Content","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":1,"dependsOnMap":{"dataFormat":["JSON"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"jsonMaxObjectLen","name":"dataFormatConfig.jsonMaxObjectLen","type":"NUMBER","defaultValue":4096,"max":2147483647,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":360,"connectionType":"","displayMode":"ADVANCED","description":"Larger objects are not processed","required":true,"label":"Max Object Length (chars)","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["DELIMITED"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"csvHeader","name":"dataFormatConfig.csvHeader","type":"MODEL","defaultValue":"NO_HEADER","max":9223372036854776000,"model":{"values":["WITH_HEADER","IGNORE_HEADER","NO_HEADER"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.config.CsvHeaderChooserValues","filteringConfig":"","labels":["With Header Line","Ignore Header Line","No Header Line"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":400,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Header Line","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["DELIMITED"],"dataFormatConfig.csvParser":["LEGACY_PARSER"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"csvFileFormat","name":"dataFormatConfig.csvFileFormat","type":"MODEL","defaultValue":"CSV","max":9223372036854776000,"model":{"values":["CSV","RFC4180","EXCEL","MYSQL","TDF","POSTGRES_CSV","POSTGRES_TEXT","CUSTOM","MULTI_CHARACTER"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.config.CsvModeChooserValues","filteringConfig":"","labels":["Default CSV (ignores empty lines)","RFC4180 CSV","MS Excel CSV","MySQL CSV","Tab Separated Values","PostgreSQL CSV","PostgreSQL Text","Custom","Multi Character Delimited"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":405,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Delimiter Format Type","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["DELIMITED"],"dataFormatConfig.csvParser":["LEGACY_PARSER"],"dataFormatConfig.csvFileFormat":["CUSTOM"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"csvCustomDelimiter","name":"dataFormatConfig.csvCustomDelimiter","type":"CHARACTER","defaultValue":"|","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":410,"connectionType":"","displayMode":"BASIC","description":"","required":false,"label":"Delimiter Character","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["DELIMITED"],"dataFormatConfig.csvParser":["LEGACY_PARSER"],"dataFormatConfig.csvFileFormat":["MULTI_CHARACTER"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"multiCharacterFieldDelimiter","name":"dataFormatConfig.multiCharacterFieldDelimiter","type":"STRING","defaultValue":"||","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":415,"connectionType":"","displayMode":"BASIC","description":"Delimiter between fields in multi-character delimited mode.","required":true,"label":"Multi Character Field Delimiter","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["DELIMITED"],"dataFormatConfig.csvParser":["LEGACY_PARSER"],"dataFormatConfig.csvFileFormat":["MULTI_CHARACTER"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"multiCharacterLineDelimiter","name":"dataFormatConfig.multiCharacterLineDelimiter","type":"STRING","defaultValue":"${str:unescapeJava('\\\\n')}","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":420,"connectionType":"","displayMode":"BASIC","description":"Delimiter between lines (i.e. different records) in multi-character delimited mode.","required":true,"label":"Multi Character Line Delimiter","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["DELIMITED"],"dataFormatConfig.csvParser":["LEGACY_PARSER"],"dataFormatConfig.csvFileFormat":["CUSTOM","MULTI_CHARACTER"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"csvCustomEscape","name":"dataFormatConfig.csvCustomEscape","type":"CHARACTER","defaultValue":"\\","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":425,"connectionType":"","displayMode":"BASIC","description":"Character used to escape quote and delimiter characters. To disable select Other and enter \\u0000 (unicode codepoint for the NULL character).","required":false,"label":"Escape Character","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["DELIMITED"],"dataFormatConfig.csvParser":["LEGACY_PARSER"],"dataFormatConfig.csvFileFormat":["CUSTOM","MULTI_CHARACTER"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"csvCustomQuote","name":"dataFormatConfig.csvCustomQuote","type":"CHARACTER","defaultValue":"\"","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":430,"connectionType":"","displayMode":"BASIC","description":"Character used to quote string fields. To disable select Other and enter \\u0000 (unicode codepoint for the NULL character).","required":false,"label":"Quote Character","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["DELIMITED"],"dataFormatConfig.csvParser":["UNIVOCITY"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"csvUnivocityFieldSeparator","name":"dataFormatConfig.csvUnivocityFieldSeparator","type":"STRING","defaultValue":",","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":440,"connectionType":"","displayMode":"BASIC","description":"Separator between fields - can be one or more characters.","required":true,"label":"Field Separator","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["DELIMITED"],"dataFormatConfig.csvParser":["UNIVOCITY"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"csvUnivocityEscape","name":"dataFormatConfig.csvUnivocityEscape","type":"CHARACTER","defaultValue":"\\","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":445,"connectionType":"","displayMode":"BASIC","description":"Character used to escape quote and delimiter characters.","required":false,"label":"Escape Character","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["DELIMITED"],"dataFormatConfig.csvParser":["UNIVOCITY"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"csvUnivocityQuote","name":"dataFormatConfig.csvUnivocityQuote","type":"CHARACTER","defaultValue":"\"","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":450,"connectionType":"","displayMode":"BASIC","description":"Character used to quote string fields.","required":false,"label":"Quote Character","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["DELIMITED"],"dataFormatConfig.csvParser":["UNIVOCITY"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"csvUnivocityLineSeparator","name":"dataFormatConfig.csvUnivocityLineSeparator","type":"STRING","defaultValue":"${str:unescapeJava('\\\\n')}","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":455,"connectionType":"","displayMode":"BASIC","description":"One or two characters separating individual records.","required":false,"label":"Line Separator","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["DELIMITED"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"csvParser","name":"dataFormatConfig.csvParser","type":"MODEL","defaultValue":"LEGACY_PARSER","max":9223372036854776000,"model":{"values":["UNIVOCITY","LEGACY_PARSER"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.config.CsvParserChooserValues","filteringConfig":"","labels":["Univocity - faster but less powerful","Apache Commons - slower but more powerful"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":500,"connectionType":"","displayMode":"ADVANCED","description":"CSV parser to use. In new pipelines, use the default Univocity parser for better performance","required":true,"label":"CSV Parser","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormatConfig.csvHeader":["WITH_HEADER"],"dataFormat":["DELIMITED"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"csvAllowExtraColumns","name":"dataFormatConfig.csvAllowExtraColumns","type":"BOOLEAN","defaultValue":false,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":505,"connectionType":"","displayMode":"ADVANCED","description":"Allows processing rows with more fields than the header. When not enabled, the rows are sent to error","required":true,"label":"Allow Extra Columns","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormatConfig.csvHeader":["WITH_HEADER"],"dataFormat":["DELIMITED"],"dataFormatConfig.csvAllowExtraColumns":[true]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"csvExtraColumnPrefix","name":"dataFormatConfig.csvExtraColumnPrefix","type":"STRING","defaultValue":"_extra_","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":510,"connectionType":"","displayMode":"ADVANCED","description":"Each extra column is labeled with this prefix followed by an integer","required":false,"label":"Extra Column Prefix","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":1,"dependsOnMap":{"dataFormat":["DELIMITED"],"dataFormatConfig.csvParser":["LEGACY_PARSER"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"csvMaxObjectLen","name":"dataFormatConfig.csvMaxObjectLen","type":"NUMBER","defaultValue":1024,"max":2147483647,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":515,"connectionType":"","displayMode":"ADVANCED","description":"Larger objects are not processed","required":true,"label":"Max Record Length (chars)","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["DELIMITED"],"dataFormatConfig.csvParser":["UNIVOCITY"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"csvUnivocityMaxColumns","name":"dataFormatConfig.csvUnivocityMaxColumns","type":"NUMBER","defaultValue":1000,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":520,"connectionType":"","displayMode":"ADVANCED","description":"Maximal number of columns to parse per line.","required":false,"label":"Max Columns","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["DELIMITED"],"dataFormatConfig.csvParser":["UNIVOCITY"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"csvUnivocityMaxCharsPerColumn","name":"dataFormatConfig.csvUnivocityMaxCharsPerColumn","type":"NUMBER","defaultValue":1000,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":525,"connectionType":"","displayMode":"ADVANCED","description":"Maximal number of character that will be read per single column.","required":false,"label":"Max Characters Per Column","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["DELIMITED"],"dataFormatConfig.csvParser":["UNIVOCITY"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"csvUnivocitySkipEmptyLines","name":"dataFormatConfig.csvUnivocitySkipEmptyLines","type":"BOOLEAN","defaultValue":true,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":530,"connectionType":"","displayMode":"ADVANCED","description":"","required":false,"label":"Skip Empty Lines","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["DELIMITED"],"dataFormatConfig.csvParser":["UNIVOCITY"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"csvUnivocityAllowComments","name":"dataFormatConfig.csvUnivocityAllowComments","type":"BOOLEAN","defaultValue":false,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":535,"connectionType":"","displayMode":"BASIC","description":"","required":false,"label":"Allow Comments","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormatConfig.csvUnivocityAllowComments":[true],"dataFormat":["DELIMITED"],"dataFormatConfig.csvParser":["UNIVOCITY"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"csvUnivocityCommentMarker","name":"dataFormatConfig.csvUnivocityCommentMarker","type":"CHARACTER","defaultValue":"#","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":540,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Comment Character","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["DELIMITED"],"dataFormatConfig.csvParser":["LEGACY_PARSER"],"dataFormatConfig.csvFileFormat":["CUSTOM"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"csvEnableComments","name":"dataFormatConfig.csvEnableComments","type":"BOOLEAN","defaultValue":false,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":545,"connectionType":"","displayMode":"BASIC","description":"","required":false,"label":"Enable comments","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormatConfig.csvEnableComments":[true],"dataFormat":["DELIMITED"],"dataFormatConfig.csvParser":["LEGACY_PARSER"],"dataFormatConfig.csvFileFormat":["CUSTOM"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"csvCommentMarker","name":"dataFormatConfig.csvCommentMarker","type":"CHARACTER","defaultValue":"#","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":550,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Comment marker","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["DELIMITED"],"dataFormatConfig.csvParser":["LEGACY_PARSER"],"dataFormatConfig.csvFileFormat":["CUSTOM"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"csvIgnoreEmptyLines","name":"dataFormatConfig.csvIgnoreEmptyLines","type":"BOOLEAN","defaultValue":true,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":550,"connectionType":"","displayMode":"ADVANCED","description":"","required":false,"label":"Ignore empty lines","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["DELIMITED"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"csvRecordType","name":"dataFormatConfig.csvRecordType","type":"MODEL","defaultValue":"LIST_MAP","max":9223372036854776000,"model":{"values":["LIST","LIST_MAP"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.config.CsvRecordTypeChooserValues","filteringConfig":"","labels":["List","List-Map"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":555,"connectionType":"","displayMode":"ADVANCED","description":"","required":true,"label":"Root Field Type","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":0,"dependsOnMap":{"dataFormat":["DELIMITED"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"csvSkipStartLines","name":"dataFormatConfig.csvSkipStartLines","type":"NUMBER","defaultValue":0,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":560,"connectionType":"","displayMode":"BASIC","description":"Number of lines to skip before reading","required":false,"label":"Lines to Skip","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["DELIMITED"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"parseNull","name":"dataFormatConfig.parseNull","type":"BOOLEAN","defaultValue":false,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":565,"connectionType":"","displayMode":"ADVANCED","description":"When checked, configured string constant will be converted into NULL field.","required":true,"label":"Parse NULLs","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["DELIMITED"],"dataFormatConfig.parseNull":[true]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"nullConstant","name":"dataFormatConfig.nullConstant","type":"STRING","defaultValue":"\\\\N","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":570,"connectionType":"","displayMode":"ADVANCED","description":"String constant that should be converted to a NULL rather then passed as it is.","required":false,"label":"NULL constant","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["XML"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"xmlRecordElement","name":"dataFormatConfig.xmlRecordElement","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":440,"connectionType":"","displayMode":"BASIC","description":"XML element that acts as a record delimiter. This may be an element name, with elements having that local name directly under the root as records. Or, it can be a simplified XPath expression (see docs), with elements matching the XPath expression as records. Leaving it blank will treat the whole XML document as one record.","required":false,"label":"Delimiter Element","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["XML"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"preserveRootElement","name":"dataFormatConfig.preserveRootElement","type":"BOOLEAN","defaultValue":true,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":441,"connectionType":"","displayMode":"ADVANCED","description":"Include the root element in the output records. The root element is the last element defined in the record element delimiter or is the root element of the XML document when no delimiter is defined","required":false,"label":"Preserve Root Element","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["XML"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"includeFieldXpathAttributes","name":"dataFormatConfig.includeFieldXpathAttributes","type":"BOOLEAN","defaultValue":false,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":442,"connectionType":"","displayMode":"ADVANCED","description":"Include XPath expressions that indicate the path to the input node that was parsed to create each field. If enabled, each field will receive an attribute named \"xpath\" whose value is the XPath expression. Any namespace prefixes will be mapped to the full URI via new xmlns:* attributes in the record header.","required":true,"label":"Include Field XPaths","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["XML"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"xPathNamespaceContext","name":"dataFormatConfig.xPathNamespaceContext","type":"MAP","defaultValue":[],"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":445,"connectionType":"","displayMode":"ADVANCED","description":"Namespace context to use if the delimiter is an XPath expression. This should map namespace prefixes to URIs. Any namespace prefix that is used in the record separator expression must be defined here.","required":false,"label":"Namespaces","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["XML"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"outputFieldAttributes","name":"dataFormatConfig.outputFieldAttributes","type":"BOOLEAN","defaultValue":false,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":448,"connectionType":"","displayMode":"ADVANCED","description":"Generate field attributes in output record for XML namespace declarations, and XML attributes. Without this option, they will continue to be output as individual fields (separate from the element value).","required":true,"label":"Output Field Attributes","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":1,"dependsOnMap":{"dataFormat":["XML"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"xmlMaxObjectLen","name":"dataFormatConfig.xmlMaxObjectLen","type":"NUMBER","defaultValue":4096,"max":2147483647,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":450,"connectionType":"","displayMode":"ADVANCED","description":"Larger records are not processed","required":true,"label":"Max Record Length (chars)","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["LOG"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"logMode","name":"dataFormatConfig.logMode","type":"MODEL","defaultValue":"COMMON_LOG_FORMAT","max":9223372036854776000,"model":{"values":["COMMON_LOG_FORMAT","COMBINED_LOG_FORMAT","APACHE_ERROR_LOG_FORMAT","APACHE_CUSTOM_LOG_FORMAT","REGEX","GROK","LOG4J","CEF","LEEF"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.config.LogModeChooserValues","filteringConfig":"","labels":["Common Log Format","Combined Log Format","Apache Error Log Format","Apache Access Log Custom Format","Regular Expression","Grok Pattern","Log4j","Common Event Format (CEF)","Log Event Extended Format (LEEF)"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":460,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Log Format","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":1,"dependsOnMap":{"dataFormat":["LOG"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"logMaxObjectLen","name":"dataFormatConfig.logMaxObjectLen","type":"NUMBER","defaultValue":1024,"max":2147483647,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":470,"connectionType":"","displayMode":"ADVANCED","description":"Longer lines are truncated","required":true,"label":"Max Line Length","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["LOG"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"retainOriginalLine","name":"dataFormatConfig.retainOriginalLine","type":"BOOLEAN","defaultValue":false,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":480,"connectionType":"","displayMode":"ADVANCED","description":"Indicates if the original line of log should be retained in the record","required":true,"label":"Retain Original Line","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormatConfig.logMode":["APACHE_CUSTOM_LOG_FORMAT"],"dataFormat":["LOG"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"customLogFormat","name":"dataFormatConfig.customLogFormat","type":"STRING","defaultValue":"%h %l %u %t \"%r\" %>s %b","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":490,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Custom Log Format","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormatConfig.logMode":["REGEX"],"dataFormat":["LOG"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"regex","name":"dataFormatConfig.regex","type":"STRING","defaultValue":"^(\\S+) (\\S+) (\\S+) \\[([\\w:/]+\\s[+\\-]\\d{4})\\] \"(\\S+) (\\S+) (\\S+)\" (\\d{3}) (\\d+)","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":500,"connectionType":"","displayMode":"BASIC","description":"The regular expression which is used to parse the log line.","required":true,"label":"Regular Expression","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormatConfig.logMode":["REGEX"],"dataFormat":["LOG"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"fieldPathsToGroupName","name":"dataFormatConfig.fieldPathsToGroupName","type":"MODEL","defaultValue":null,"max":9223372036854776000,"model":{"values":null,"configDefinitions":[{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"","fieldName":"fieldPath","name":"fieldPath","type":"STRING","defaultValue":"/","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":10,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Field Path","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{},"dependsOn":"","group":"","fieldName":"group","name":"group","type":"NUMBER","defaultValue":1,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":20,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Regular Expression Group","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"}],"modelType":"LIST_BEAN","valuesProviderClass":null,"filteringConfig":null,"labels":null},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":510,"connectionType":"","displayMode":"BASIC","description":"Map groups in the regular expression to field paths","required":true,"label":"Field Path To RegEx Group Mapping","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormatConfig.logMode":["GROK"],"dataFormat":["LOG"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"grokPatternDefinition","name":"dataFormatConfig.grokPatternDefinition","type":"TEXT","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":520,"connectionType":"","displayMode":"BASIC","description":"Define your own grok patterns which will be used to parse the logs","required":false,"label":"Grok Pattern Definition","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormatConfig.logMode":["GROK"],"dataFormat":["LOG"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"grokPattern","name":"dataFormatConfig.grokPattern","type":"STRING","defaultValue":"%{COMMONAPACHELOG}","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":530,"connectionType":"","displayMode":"BASIC","description":"The grok pattern which is used to parse the log line","required":true,"label":"Grok Pattern","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormatConfig.logMode":["LOG4J"],"dataFormat":["LOG"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"onParseError","name":"dataFormatConfig.onParseError","type":"MODEL","defaultValue":"ERROR","max":9223372036854776000,"model":{"values":["ERROR","IGNORE","INCLUDE_AS_STACK_TRACE"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.config.OnParseErrorChooserValues","filteringConfig":"","labels":["ERROR","IGNORE","INCLUDE AS STACK TRACE"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":540,"connectionType":"","displayMode":"ADVANCED","description":"","required":true,"label":"On Parse Error","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":0,"dependsOnMap":{"dataFormatConfig.logMode":["LOG4J"],"dataFormat":["LOG"],"dataFormatConfig.onParseError":["INCLUDE_AS_STACK_TRACE"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"maxStackTraceLines","name":"dataFormatConfig.maxStackTraceLines","type":"NUMBER","defaultValue":50,"max":2147483647,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":550,"connectionType":"","displayMode":"ADVANCED","description":"Any line that does not match the expected pattern will be treated as a Stack trace as long as it is part of the same message. The stack trace will be trimmed to the specified number of lines.","required":true,"label":"Trim Stack Trace to Length","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormatConfig.logMode":["LOG4J"],"dataFormat":["LOG"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"enableLog4jCustomLogFormat","name":"dataFormatConfig.enableLog4jCustomLogFormat","type":"BOOLEAN","defaultValue":false,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":560,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Use Custom Log Format","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormatConfig.logMode":["LOG4J"],"dataFormat":["LOG"],"dataFormatConfig.enableLog4jCustomLogFormat":[true]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"log4jCustomLogFormat","name":"dataFormatConfig.log4jCustomLogFormat","type":"STRING","defaultValue":"%r [%t] %-5p %c %x - %m%n","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":570,"connectionType":"","displayMode":"BASIC","description":"Specify your own custom log4j format.","required":true,"label":"Custom Log4J Format","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["AVRO"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"avroSchemaSource","name":"dataFormatConfig.avroSchemaSource","type":"MODEL","defaultValue":null,"max":9223372036854776000,"model":{"values":["SOURCE","INLINE","REGISTRY"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.config.OriginAvroSchemaSourceChooserValues","filteringConfig":"","labels":["Message/Data Includes Schema","In Pipeline Configuration","Confluent Schema Registry"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":400,"connectionType":"","displayMode":"BASIC","description":"Where to load the Avro Schema from.","required":true,"label":"Avro Schema Location","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["AVRO"],"dataFormatConfig.avroSchemaSource":["INLINE"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"avroSchema","name":"dataFormatConfig.avroSchema","type":"TEXT","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":410,"connectionType":"","displayMode":"BASIC","description":"Overrides the schema included in the data (if any). Optionally use the runtime:loadResource function to use a schema stored in a file.","required":true,"label":"Avro Schema","mode":"application/json","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["AVRO"],"dataFormatConfig.avroSchemaSource":["REGISTRY"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"schemaRegistryUrls","name":"dataFormatConfig.schemaRegistryUrls","type":"LIST","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":420,"connectionType":"","displayMode":"BASIC","description":"List of Confluent Schema Registry URLs","required":true,"label":"Schema Registry URLs","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["AVRO"],"dataFormatConfig.avroSchemaSource":["REGISTRY"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"basicAuth","name":"dataFormatConfig.basicAuth","type":"CREDENTIAL","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63","65","66","67","68"],"elConstantDefinitionsIdx":["64"],"displayPosition":421,"connectionType":"","displayMode":"BASIC","description":"","required":false,"label":"Basic Auth User Info","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["AVRO"],"dataFormatConfig.avroSchemaSource":["REGISTRY"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"schemaLookupMode","name":"dataFormatConfig.schemaLookupMode","type":"MODEL","defaultValue":"SUBJECT","max":9223372036854776000,"model":{"values":["SUBJECT","ID","AUTO"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.config.OriginAvroSchemaLookupModeChooserValues","filteringConfig":"","labels":["Subject","Schema ID","Embedded Schema ID"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":430,"connectionType":"","displayMode":"BASIC","description":"Whether to look up the Avro Schema by ID or fetch the latest schema for a Subject.","required":true,"label":"Lookup Schema By","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["AVRO"],"dataFormatConfig.schemaLookupMode":["SUBJECT"],"dataFormatConfig.avroSchemaSource":["REGISTRY"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"subject","name":"dataFormatConfig.subject","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":440,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Schema Subject","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":1,"dependsOnMap":{"dataFormat":["AVRO"],"dataFormatConfig.schemaLookupMode":["ID"],"dataFormatConfig.avroSchemaSource":["REGISTRY"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"schemaId","name":"dataFormatConfig.schemaId","type":"NUMBER","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":450,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Schema ID","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["AVRO"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"avroSkipUnionIndex","name":"dataFormatConfig.avroSkipUnionIndex","type":"BOOLEAN","defaultValue":false,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":460,"connectionType":"","displayMode":"ADVANCED","description":"When checked generated records will not contain header attributes identifying which part of a union was used to read data in. Data Collector does not use the header attributes directly, thus this can be selected safely unless the pipeline explicitly depends on them.","required":true,"label":"Skip Union Indexes","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["PROTOBUF"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"protoDescriptorFile","name":"dataFormatConfig.protoDescriptorFile","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":600,"connectionType":"","displayMode":"BASIC","description":"Protobuf Descriptor File (.desc) path relative to SDC resources directory","required":true,"label":"Protobuf Descriptor File","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["PROTOBUF"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"messageType","name":"dataFormatConfig.messageType","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":610,"connectionType":"","displayMode":"BASIC","description":"Fully Qualified Message Type name. Use format <packageName>.<messageTypeName>","required":true,"label":"Message Type","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["PROTOBUF"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"isDelimited","name":"dataFormatConfig.isDelimited","type":"BOOLEAN","defaultValue":true,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":620,"connectionType":"","displayMode":"BASIC","description":"Should be checked when the input data is prepended with the message size. When unchecked only a single message can be present in the source file/Kafka message, etc.","required":true,"label":"Delimited Messages","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":1,"dependsOnMap":{"dataFormat":["BINARY"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"binaryMaxObjectLen","name":"dataFormatConfig.binaryMaxObjectLen","type":"NUMBER","defaultValue":1024,"max":2147483647,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":700,"connectionType":"","displayMode":"ADVANCED","description":"Larger objects are not processed","required":true,"label":"Max Data Size (bytes)","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["DATAGRAM"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"datagramMode","name":"dataFormatConfig.datagramMode","type":"MODEL","defaultValue":"SYSLOG","max":9223372036854776000,"model":{"values":["NETFLOW","SYSLOG","COLLECTD","RAW_DATA"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.config.DatagramModeChooserValues","filteringConfig":"","labels":["NetFlow","syslog","collectd","Raw/Separated data"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":800,"connectionType":"","displayMode":"BASIC","description":"","required":true,"label":"Datagram Packet Format","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["DATAGRAM"],"dataFormatConfig.datagramMode":["COLLECTD"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"typesDbPath","name":"dataFormatConfig.typesDbPath","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":820,"connectionType":"","displayMode":"BASIC","description":"User-specified TypesDB file. Overrides the included version.","required":false,"label":"TypesDB File Path","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["DATAGRAM"],"dataFormatConfig.datagramMode":["COLLECTD"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"convertTime","name":"dataFormatConfig.convertTime","type":"BOOLEAN","defaultValue":false,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":830,"connectionType":"","displayMode":"ADVANCED","description":"Converts high resolution time format interval and timestamp to unix time in (ms).","required":true,"label":"Convert Hi-Res Time & Interval","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["DATAGRAM"],"dataFormatConfig.datagramMode":["COLLECTD"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"excludeInterval","name":"dataFormatConfig.excludeInterval","type":"BOOLEAN","defaultValue":true,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":840,"connectionType":"","displayMode":"ADVANCED","description":"Excludes the interval field from output records.","required":true,"label":"Exclude Interval","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["DATAGRAM"],"dataFormatConfig.datagramMode":["COLLECTD"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"authFilePath","name":"dataFormatConfig.authFilePath","type":"STRING","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":850,"connectionType":"","displayMode":"BASIC","description":"","required":false,"label":"Auth File","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["NETFLOW"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"netflowOutputValuesMode","name":"dataFormatConfig.netflowOutputValuesMode","type":"MODEL","defaultValue":"RAW_AND_INTERPRETED","max":9223372036854776000,"model":{"values":["RAW_ONLY","INTERPRETED_ONLY","RAW_AND_INTERPRETED"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.lib.parser.net.netflow.OutputValuesModeChooserValues","filteringConfig":"","labels":["Raw only","Interpreted only","Raw and interpreted"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":870,"connectionType":"","displayMode":"BASIC","description":"Determines the data that is included in the record generated from a flow. Only applies to NetFlow 9.","required":true,"label":"Record Generation Mode","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["NETFLOW"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"maxTemplateCacheSize","name":"dataFormatConfig.maxTemplateCacheSize","type":"NUMBER","defaultValue":-1,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":880,"connectionType":"","displayMode":"ADVANCED","description":"Controls the maximum number of templates to cache from all sources. Additional templates received when this limit is reached cause the eviction of existing templates, least recently used first. Leave as -1 for unlimited. Only applies to NetFlow 9.","required":true,"label":"Max Templates in Cache","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["NETFLOW"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"templateCacheTimeoutMs","name":"dataFormatConfig.templateCacheTimeoutMs","type":"NUMBER","defaultValue":-1,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":890,"connectionType":"","displayMode":"ADVANCED","description":"Controls the maximum length of time flow templates are cached, after last being used to parse a data flow. Leave as -1 for unlimited (never expires). Only applies to NetFlow 9.","required":true,"label":"Template Cache Timeout (ms)","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["DATAGRAM"],"dataFormatConfig.datagramMode":["NETFLOW"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"netflowOutputValuesModeDatagram","name":"dataFormatConfig.netflowOutputValuesModeDatagram","type":"MODEL","defaultValue":"RAW_AND_INTERPRETED","max":9223372036854776000,"model":{"values":["RAW_ONLY","INTERPRETED_ONLY","RAW_AND_INTERPRETED"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.lib.parser.net.netflow.OutputValuesModeChooserValues","filteringConfig":"","labels":["Raw only","Interpreted only","Raw and interpreted"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":870,"connectionType":"","displayMode":"ADVANCED","description":"Determines the data that is included in the record generated from a flow. Only applies to NetFlow 9.","required":true,"label":"Record Generation Mode","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["DATAGRAM"],"dataFormatConfig.datagramMode":["NETFLOW"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"maxTemplateCacheSizeDatagram","name":"dataFormatConfig.maxTemplateCacheSizeDatagram","type":"NUMBER","defaultValue":-1,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":880,"connectionType":"","displayMode":"ADVANCED","description":"Controls the maximum number of templates to cache from all sources. Additional templates received when this limit is reached cause the eviction of existing templates, least recently used first. Leave as -1 for unlimited. Only applies to NetFlow 9.","required":true,"label":"Max Templates in Cache","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["DATAGRAM"],"dataFormatConfig.datagramMode":["NETFLOW"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"templateCacheTimeoutMsDatagram","name":"dataFormatConfig.templateCacheTimeoutMsDatagram","type":"NUMBER","defaultValue":-1,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":890,"connectionType":"","displayMode":"ADVANCED","description":"Controls the maximum length of time flow templates are cached, after last being used to parse a data flow. Leave as -1 for unlimited (never expires). Only applies to NetFlow 9.","required":true,"label":"Template Cache Timeout (ms)","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":1,"dependsOnMap":{"dataFormat":["WHOLE_FILE"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"wholeFileMaxObjectLen","name":"dataFormatConfig.wholeFileMaxObjectLen","type":"NUMBER","defaultValue":8192,"max":2147483647,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":900,"connectionType":"","displayMode":"ADVANCED","description":"Size of the Buffer used to copy the file.","required":true,"label":"Buffer Size (bytes)","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["WHOLE_FILE"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"rateLimit","name":"dataFormatConfig.rateLimit","type":"STRING","defaultValue":"-1","max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64","172","173","174"],"displayPosition":920,"connectionType":"","displayMode":"ADVANCED","description":"Rate / sec to manipulate bandwidth requirements for File Transfer. Use <= 0 to opt out. Default unit is B/sec","required":true,"label":"Rate per second","mode":"text/plain","elDefs":null,"evaluation":"EXPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["WHOLE_FILE"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"verifyChecksum","name":"dataFormatConfig.verifyChecksum","type":"BOOLEAN","defaultValue":false,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":1000,"connectionType":"","displayMode":"BASIC","description":"When checked verifies the checksum of the stream during read.","required":true,"label":"Verify Checksum","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["EXCEL"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"excelHeader","name":"dataFormatConfig.excelHeader","type":"MODEL","defaultValue":null,"max":9223372036854776000,"model":{"values":["WITH_HEADER","IGNORE_HEADER","NO_HEADER"],"configDefinitions":null,"modelType":"VALUE_CHOOSER","valuesProviderClass":"com.streamsets.pipeline.config.ExcelHeaderChooserValues","filteringConfig":"","labels":["With Header Line","Ignore Header Line","No Header Line"]},"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":1000,"connectionType":"","displayMode":"BASIC","description":"Excel headers","required":true,"label":"Excel Header Option","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["EXCEL"],"dataFormatConfig.excelHeader":["WITH_HEADER"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"excelSkipCellsWithNoHeader","name":"dataFormatConfig.excelSkipCellsWithNoHeader","type":"BOOLEAN","defaultValue":false,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":1001,"connectionType":"","displayMode":"BASIC","description":"If checked, cells that have no associated header value will be skipped.","required":true,"label":"Skip Cells With No Header","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormat":["EXCEL"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"excelReadAllSheets","name":"dataFormatConfig.excelReadAllSheets","type":"BOOLEAN","defaultValue":true,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":[],"elConstantDefinitionsIdx":[],"displayPosition":1010,"connectionType":"","displayMode":"BASIC","description":"Specifies whether all sheets from the document should be read.","required":true,"label":"Read All Sheets","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"},{"min":-9223372036854776000,"dependsOnMap":{"dataFormatConfig.excelReadAllSheets":[false],"dataFormat":["EXCEL"]},"dependsOn":"","group":"DATA_FORMAT","fieldName":"excelSheetNames","name":"dataFormatConfig.excelSheetNames","type":"LIST","defaultValue":null,"max":9223372036854776000,"model":null,"lines":0,"upload":"NO","triggeredByValues":null,"elFunctionDefinitionsIdx":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59","60","61","62","63"],"elConstantDefinitionsIdx":["64"],"displayPosition":1020,"connectionType":"","displayMode":"BASIC","description":"Names of the sheets that should be imported. Other sheets will be ignored.","required":true,"label":"Import Sheets","mode":"text/plain","elDefs":null,"evaluation":"IMPLICIT"}],"description":"","privateClassLoader":false,"provides":"com.streamsets.pipeline.api.service.dataformats.DataFormatParserService","library":"streamsets-datacollector-dataformats-lib","label":"DataFormat Parser","libraryLabel":"Data Formats"}],"rulesElMetadata":null,"elCatalog":null,"runtimeConfigs":null,"stageIcons":null,"legacyStageLibs":null,"eventDefinitions":null,"version":null,"executorVersion":null,"category":null,"categoryLabel":null,"stageDefinitionMap":null,"stageDefinitionMinimalList":null} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment