Member since
10-18-2024
5
Posts
0
Kudos Received
0
Solutions
10-23-2024
09:55 AM
Thank you, the matter was in "/", indeed ))
... View more
10-23-2024
05:45 AM
Hello! The general task is to transform xml to csv For this aim I created following pipeline: Source xml content is: <Email E-mail="AR-BIK@GMAIL.COM"> <Data GRN="3214600023849" Date="2024-07-28"></Data></Email> Parameters of EvaluateXPath are: ReplaceText parameters: Attribute grn successfully produced with expected value: But value "3214600023849" is not translated to csv. Only ; delimiter. Encoding is UTF-8 What am I doing wrong?
... View more
Labels:
- Labels:
-
Apache NiFi
10-20-2024
01:45 AM
@drewski7 wrote: @AndreyDE Is one flowfile going into the SplitText processor and outputting 10000 flowfiles? Yes - one flow file How big is the flowfile going into the SplitText processor? About 30 KB Or is the source of the pipeline recursively getting all objects in your S3 bucket? Yes, it searches all objects recursively
... View more
10-19-2024
12:42 PM
My SplitFile processor connected (follows by) ValidateRecords processor. ValidateRecords use CSVReader with following configuration: Input_schema is avro: {
"type": "record",
"name": "geo_data",
"fields": [
{
"name": "id",
"type": [
"int",
"null"
]
},
{
"name": "description",
"type": [
"string",
"null"
]
}
]
} And the source of this pipeline in ListS3 and FetchS3 processors.
... View more
10-18-2024
05:20 AM
Hello! The configuration of my SplitText is: The task is to split one csv file: id;description
"1234";"The latitude is 12324.24"
"2345";"12324.24 this value" on 2 files: id;description
"1234";"The latitude is 12324.24" and id;description
"2345";12324.24 this value" But it returns 10000 and more duplicated files! What am I doing wrong?
... View more
Labels:
- Labels:
-
Apache NiFi