JSONLine
Bases: ReadWriteFileFormat
JSONLine file format (each line of file contains a JSON object). |support_hooks|
Based on Spark JSON <https://spark.apache.org/docs/latest/sql-data-sources-json.html>_ file format.
Supports reading/writing files with .json extension with content like:
.. code-block:: json :caption: example.json
{"key": "value1"}
{"key": "value2"}
.. versionadded:: 0.9.0
Examples
.. note ::
You can pass any option mentioned in
`official documentation <https://spark.apache.org/docs/latest/sql-data-sources-json.html>`_.
**Option names should be in** ``camelCase``!
The set of supported options depends on Spark version.
.. tabs::
.. code-tab:: py Reading files
from onetl.file.format import JSONLine
jsonline = JSONLine(encoding="UTF-8", mode="PERMISSIVE")
.. tab:: Writing files
.. warning::
Written files have extension ``.json``, not ``.jsonl`` or ``.jsonline``.
.. code:: python
from onetl.file.format import JSONLine
jsonline = JSONLine(encoding="UTF-8", compression="gzip")
Source code in onetl/file/format/jsonline.py
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 64 65 66 67 68 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 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 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 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 | |
allowBackslashEscapingAnyCharacter = None
class-attribute
instance-attribute
If True, prefix \ can escape any character.
Default False.
.. note::
Used only for reading files.
allowComments = None
class-attribute
instance-attribute
If True, add support for C/C++/Java style comments (//, /* */).
Default False, meaning that JSONLine files should not contain comments.
.. note::
Used only for reading files.
allowNonNumericNumbers = None
class-attribute
instance-attribute
If True, allow numbers to contain non-numeric characters, like:
* scientific notation (e.g. 12e10).
* positive infinity floating point value (Infinity, +Infinity, +INF).
* negative infinity floating point value (-Infinity, -INF).
* Not-a-Number floating point value (NaN).
Default True.
.. note::
Used only for reading files.
allowNumericLeadingZeros = None
class-attribute
instance-attribute
If True, allow leading zeros in numbers (e.g. 00012).
Default False.
.. note::
Used only for reading files.
allowSingleQuotes = None
class-attribute
instance-attribute
If True, allow JSON object field names to be wrapped with single quotes (').
Default True.
.. note::
Used only for reading files.
allowUnquotedControlChars = None
class-attribute
instance-attribute
If True, allow unquoted control characters (ASCII values 0-31) in strings without escaping them with \.
Default False.
.. note::
Used only for reading files.
allowUnquotedFieldNames = None
class-attribute
instance-attribute
If True, allow JSON object field names without quotes (JavaScript-style).
Default False.
.. note::
Used only for reading files.
columnNameOfCorruptRecord = Field(default=None, min_length=1)
class-attribute
instance-attribute
Name of column to put corrupt records in.
Default is _corrupt_record.
.. warning::
If DataFrame schema is provided, this column should be added to schema explicitly:
.. code:: python
from onetl.connection import SparkLocalFS
from onetl.file import FileDFReader
from onetl.file.format import JSONLine
from pyspark.sql.types import StructType, StructField, TimestampType, StringType
spark = ...
schema = StructType(
[
StructField("my_field", TimestampType()),
StructField("_corrupt_record", StringType()), # <-- important
]
)
jsonline = JSONLine(mode="PERMISSIVE", columnNameOfCorruptRecord="_corrupt_record")
reader = FileDFReader(
connection=connection,
format=jsonline,
df_schema=schema, # < ---
)
df = reader.run(["/some/file.jsonl"])
.. note::
Used only for reading files.
compression = None
class-attribute
instance-attribute
Compression codec of the JSONLine file.
Default none.
.. note::
Used only for writing files.
dateFormat = Field(default=None, min_length=1)
class-attribute
instance-attribute
String format for DateType() representation.
Default is yyyy-MM-dd.
dropFieldIfAllNull = None
class-attribute
instance-attribute
If True and inferred column is always null or empty array, exclude if from DataFrame schema.
Default False.
.. note::
Used only for reading files.
encoding = None
class-attribute
instance-attribute
Encoding of the JSONLine files.
Default UTF-8.
ignoreNullFields = None
class-attribute
instance-attribute
If True and field value is null, don't add field into resulting object
Default is value of spark.sql.jsonGenerator.ignoreNullFields (True).
.. note::
Used only for writing files.
lineSep = None
class-attribute
instance-attribute
Character used to separate lines in the JSONLine files.
Defaults
- Try to detect for reading (
\r\n,\r,\n) \nfor writing.
locale = Field(default=None, min_length=1)
class-attribute
instance-attribute
Locale name used to parse dates and timestamps.
Default is en-US.
.. note::
Used only for reading files.
mode = None
class-attribute
instance-attribute
How to handle parsing errors
PERMISSIVE- set field value asnull, move raw data to :obj:~columnNameOfCorruptRecordcolumn.DROPMALFORMED- skip the malformed row.FAILFAST- throw an error immediately.
Default is PERMISSIVE.
.. note::
Used only for reading files.
prefersDecimal = None
class-attribute
instance-attribute
If True, infer all floating-point values as Decimal.
Default False.
.. note::
Used only for reading files.
primitivesAsString = None
class-attribute
instance-attribute
If True, infer all primitive types (string, integer, float, boolean) as strings.
Default False.
.. note::
Used only for reading files.
samplingRatio = Field(default=None, ge=0, le=1)
class-attribute
instance-attribute
While inferring schema, read the specified fraction of file rows.
Default 1.
.. note::
Used only for reading files.
timestampFormat = Field(default=None, min_length=1)
class-attribute
instance-attribute
String format for `TimestampType()representation.
Default isyyyy-MM-dd'T'HHss[.SSS][XXX]``.
timestampNTZFormat = Field(default=None, min_length=1)
class-attribute
instance-attribute
String format for `TimestampNTZType()representation.
Default isyyyy-MM-dd'T'HHss[.SSS]``.
.. note::
Added in Spark 3.2.0
timezone = Field(default=None, min_length=1, alias='timeZone')
class-attribute
instance-attribute
Allows to override timezone used for parsing or serializing date and timestamp values.
By default, spark.sql.session.timeZone is used.