cobrix
cobrix copied to clipboard
A COBOL parser and Mainframe/EBCDIC data source for Apache Spark
Hi, We have a file with variable length and length is determined by first 6 bytes-(has multiple copybook so merged all of them-) I am using custom record parser for...
## Background [Optional] I have a copybook file like - 01 XXXXXX 04 AAAAA PIC X(10). 04 BAAAA PIC X(4). 04 CAAAA PIC X(4). 04 DAAAA PIC XX. There is...
## Background [Optional] A clear explanation of the reason for raising the question. This gives us a better understanding of your use cases and how we might accommodate them. Below...
**## Describe the bug** Here are the Cobol copy book and ebcdic data files. I try to read using below statement. I was able to print the schema, however I...
We are from capital one, trying to use COBRIX to convert some of the EBCDIC files to ASCII format. we are facing some issues in reading a VB file format...
Does cobrix support justified, rename clause, and P in PIC clause which scales up and down the value
## Background [Optional] A clear explanation of the reason for raising the question. This gives us a better understanding of your use cases and how we might accommodate them. ##...
## Background [Optional] I am parsing a multisegment file with variable record length for each segment. Here's env, library, & code fragment (which I modified to make it generic): Env:...
## Background Currently, `.option("is_text", "true")` is limited to ASCII UTF-8 files. EOL separators allow us to treat a file as a fully variable-length file. ## Feature Implement `is_text` through variable-length...
I'm trying to write a JSON reader based on the new split of packages, but am finding that I'm repeating a lot of the code on the Spark side, so...
Hi @yruslan , I am trying to read a file with the following command: `spark.read.format("cobol").option("copybook", file://BOOK.txt").load("DATASET.dat").count()` The error output is: > ERROR FileUtils$: File hdfs://NHA/user/big/DATASET.dat IS NOT divisible by 200....