A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from http://cloud.google.com/php/docs/reference/cloud-bigquery/latest/LoadJobConfiguration below:

BigQuery Client - Class LoadJobConfiguration (1.34.0) | PHP Client Libraries

Skip to main content BigQuery Client - Class LoadJobConfiguration (1.34.0)

Stay organized with collections Save and categorize content based on your preferences.

Reference documentation and code samples for the BigQuery Client class LoadJobConfiguration.

Represents a configuration for a load job. For more information on the available settings please see the Jobs configuration API documentation.

Example:

use Google\Cloud\BigQuery\BigQueryClient;

$bigQuery = new BigQueryClient();
$table = $bigQuery->dataset('my_dataset')
    ->table('my_table');
$loadJobConfig = $table->load(fopen('/path/to/my/data.csv', 'r'));
NamespaceGoogle \ Cloud \ BigQuery Methods __construct Parameters Name Description projectId string

The project's ID.

config array

A set of configuration options for a job.

location string|null

The geographic location in which the job is executed.

allowJaggedRows

Sets whether to accept rows that are missing trailing optional columns.

The missing values are treated as nulls. If false, records with missing trailing columns are treated as bad records, and if there are too many bad records, an invalid error is returned in the job result. Only applicable to CSV, ignored for other formats.

Example:

$loadJobConfig->allowJaggedRows(true);
Parameter Name Description allowJaggedRows bool

Whether or not to allow jagged rows. Defaults to* false.

allowQuotedNewlines

Sets whether quoted data sections that contain newline characters in a CSV file are allowed.

Example:

$loadJobConfig->allowQuotedNewlines(true);
Parameter Name Description allowQuotedNewlines bool

Whether or not to allow quoted new lines. Defaults to false.

autodetect

Sets whether we should automatically infer the options and schema for CSV and JSON sources.

Example:

$loadJobConfig->autodetect(true);
Parameter Name Description autodetect bool

Whether or not to autodetect options and schema.

clustering Parameter Name Description clustering array

Clustering specification for the table.

createDisposition

Set whether the job is allowed to create new tables. Creation, truncation and append actions occur as one atomic update upon job completion.

Example:

$loadJobConfig->createDisposition('CREATE_NEVER');
Parameter Name Description createDisposition string

The create disposition. Acceptable values include "CREATED_IF_NEEDED", "CREATE_NEVER". Defaults to "CREATE_IF_NEEDED".

destinationEncryptionConfiguration

Sets the custom encryption configuration (e.g., Cloud KMS keys).

Example:

$loadJobConfig->destinationEncryptionConfiguration([
    'kmsKeyName' => 'my_key'
]);
Parameter Name Description configuration array

Custom encryption configuration.

data

The data to be loaded into the table.

Example:

$loadJobConfig->data(fopen('/path/to/my/data.csv', 'r'));
Parameter Name Description data string|resource|Psr\Http\Message\StreamInterface

The data to be loaded into the table.

destinationTable

Sets the destination table to load the data into.

Example:

$table = $bigQuery->dataset('my_dataset')
    ->table('my_table');
$loadJobConfig->destinationTable($table);
Parameter Name Description destinationTable Table

The destination table.

encoding

Sets the character encoding of the data. BigQuery decodes the data after the raw, binary data has been split using the values of the quote and fieldDelimiter properties.

Example:

$loadJobConfig->encoding('UTF-8');
Parameter Name Description encoding string

The encoding type. Acceptable values include "UTF-8", "ISO-8859-1". Defaults to "UTF-8".

fieldDelimiter

Sets the separator for fields in a CSV file. The separator can be any ISO-8859-1 single-byte character. To use a character in the range 128-255, you must encode the character as UTF8. BigQuery converts the string to ISO-8859-1 encoding, and then uses the first byte of the encoded string to split the data in its raw, binary state. BigQuery also supports the escape sequence "\t" to specify a tab separator.

Example:

$loadJobConfig->fieldDelimiter('\t');
Parameter Name Description fieldDelimiter string

The field delimiter. Defaults to ",".

ignoreUnknownValues

Sets whether values that are not represented in the table schema should be allowed. If true, the extra values are ignored. If false, records with extra columns are treated as bad records, and if there are too many bad records, an invalid error is returned in the job result.

The sourceFormat property determines what BigQuery treats as an extra value:

Example:

$loadJobConfig->ignoreUnknownValues(true);
Parameter Name Description ignoreUnknownValues bool

Whether or not to ignore unknown values. Defaults to* false.

maxBadRecords

Sets the maximum number of bad records that BigQuery can ignore when running the job. If the number of bad records exceeds this value, an invalid error is returned in the job result.

Example:

$loadJobConfig->maxBadRecords(10);
Parameter Name Description maxBadRecords int

The maximum number of bad records. Defaults to* 0 (requires all records to be valid).

nullMarker

Sets a string that represents a null value in a CSV file. For example, if you specify "\N", BigQuery interprets "\N" as a null value when loading a CSV file. The default value is the empty string. If you set this property to a custom value, BigQuery throws an error if an empty string is present for all data types except for STRING and BYTE. For STRING and BYTE columns, BigQuery interprets the empty string as an empty value.

Example:

$loadJobConfig->nullMarker('\N');
Parameter Name Description nullMarker string

The null marker.

projectionFields

Sets a list of projection fields. If sourceFormat is set to "DATASTORE_BACKUP", indicates which entity properties to load into BigQuery from a Cloud Datastore backup. Property names are case sensitive and must be top-level properties. If no properties are specified, BigQuery loads all properties. If any named property isn't found in the Cloud Datastore backup, an invalid error is returned in the job result.

Example:

$loadJobConfig->projectionFields([
    'field_name'
]);
Parameter Name Description projectionFields array

The projection fields.

quote

Sets the value that is used to quote data sections in a CSV file.

BigQuery converts the string to ISO-8859-1 encoding, and then uses the first byte of the encoded string to split the data in its raw, binary state. If your data does not contain quoted sections, set the property value to an empty string. If your data contains quoted newline characters, you must also set the allowQuotedNewlines property to true.

Example:

$loadJobConfig->quote('"');
Parameter Name Description quote string

The quote value. Defaults to """ (double quotes).

schema

Sets the schema for the destination table. The schema can be omitted if the destination table already exists, or if you're loading data from Google Cloud Datastore.

Example:

$loadJobConfig->schema([
    'fields' => [
        [
            'name' => 'col1',
            'type' => 'STRING',
        ],
        [
            'name' => 'col2',
            'type' => 'BOOL',
        ]
    ]
]);
Parameter Name Description schema array

The table schema.

schemaUpdateOptions

Sets options to allow the schema of the destination table to be updated as a side effect of the query job. Schema update options are supported in two cases: when writeDisposition is "WRITE_APPEND"; when writeDisposition is "WRITE_TRUNCATE" and the destination table is a partition of a table, specified by partition decorators. For normal tables, "WRITE_TRUNCATE" will always overwrite the schema.

Example:

$loadJobConfig->schemaUpdateOptions([
    'ALLOW_FIELD_ADDITION'
]);
Parameter Name Description schemaUpdateOptions array

Schema update options. Acceptable values include "ALLOW_FIELD_ADDITION" (allow adding a nullable field to the schema), "ALLOW_FIELD_RELAXATION" (allow relaxing a required field in the original schema to nullable).

skipLeadingRows

Sets the number of rows at the top of a CSV file that BigQuery will skip when loading the data. This property is useful if you have header rows in the file that should be skipped.

Example:

$loadJobConfig->skipLeadingRows(10);
Parameter Name Description skipLeadingRows int

The number of rows to skip. Defaults to* 0.

sourceFormat

Sets the format of the data files.

Example:

$loadJobConfig->sourceFormat('NEWLINE_DELIMITED_JSON');
Parameter Name Description sourceFormat string

The source format. Acceptable values include "CSV", "DATASTORE_BACKUP", "NEWLINE_DELIMITED_JSON", "AVRO", "PARQUET", "ORC". Defaults to "CSV".

sourceUris

Sets the fully-qualified URIs that point to your data in Google Cloud.

Example:

$loadJobConfig->sourceUris([
    'gs://my_bucket/source.csv'
]);
Parameter Name Description sourceUris array

The source URIs.

timePartitioning

Sets time-based partitioning for the destination table.

Only one of timePartitioning and rangePartitioning should be specified.

Example:

$loadJobConfig->timePartitioning([
    'type' => 'DAY'
]);
Parameter Name Description timePartitioning array

Time-based partitioning configuration.

rangePartitioning

Sets range partitioning specification for the destination table.

Only one of timePartitioning and rangePartitioning should be specified.

Example:

$loadJobConfig->rangePartitioning([
    'field' => 'myInt',
    'range' => [
        'start' => '0',
        'end' => '1000',
        'interval' => '100'
    ]
]);
Parameter Name Description rangePartitioning array
writeDisposition

Sets the action that occurs if the destination table already exists. Each action is atomic and only occurs if BigQuery is able to complete the job successfully. Creation, truncation and append actions occur as one atomic update upon job completion.

Example:

$loadJobConfig->writeDisposition('WRITE_TRUNCATE');
Parameter Name Description writeDisposition string

The write disposition. Acceptable values include "WRITE_TRUNCATE", "WRITE_APPEND", "WRITE_EMPTY". Defaults to* "WRITE_APPEND".

useAvroLogicalTypes

Sets whether to use logical types when loading from AVRO format.

If sourceFormat is set to "AVRO", indicates whether to enable interpreting logical types into their corresponding types (ie. TIMESTAMP), instead of only using their raw types (ie. INTEGER).

Example:

$loadJobConfig->useAvroLogicalTypes(true);
Parameter Name Description useAvroLogicalTypes bool
hivePartitioningOptions Parameter Name Description hivePartitioningOptions array
createSession

Decide whether to create a new session with a random id.

The created session id is returned as part of the SessionInfo within the query statistics.

Example:

$loadJobConfig->createSession(true);
Parameter Name Description createSession bool
connectionProperties

Sets connection properties for the load job.

Example:

$loadJobConfig->connectionProperties([
    'key' => 'session_id',
    'value' => 'sessionId'
]);
Parameter Name Description connectionProperties array
referenceFileSchemaUri

Sets the reference for external table schema.

It is enabled for AVRO, PARQUET and ORC format.

Example:

$loadJobConfig->referenceFileSchemaUri('gs://bucket/source.parquet');
Parameter Name Description referenceFileSchemaUri string
columnNameCharacterMap

Character map supported for column names in CSV/Parquet loads.

Defaults to STRICT and can be overridden by Project Config Service. Using this option with unsupporting load formats will result in an error.

Example:

$loadJobConfig->columnNameCharacterMap('V2');
Parameter Name Description columnNameCharacterMap string

The column name character map. Acceptable values include "COLUMN_NAME_CHARACTER_MAP_UNSPECIFIED", "STRICT", "V1", "V2".

copyFilesOnly

[Experimental] Configures the load job to copy files directly to the destination BigLake managed table, bypassing file content reading and rewriting. Copying files only is supported when all the following are true:

Example:

$loadJobConfig->copyFilesOnly(true);
Parameter Name Description copyFilesOnly bool

Whether to copy files only.

dateFormat

Date format used for parsing DATE values.

Example:

$loadJobConfig->dateFormat('%Y-%m-%d');
Parameter Name Description dateFormat string

The date format string.

datetimeFormat

Date format used for parsing DATETIME values.

Example:

$loadJobConfig->datetimeFormat('%Y-%m-%d %H:%M:%S');
Parameter Name Description datetimeFormat string

The datetime format string.

decimalTargetTypes

Defines the list of possible SQL data types to which the source decimal values are converted. This list and the precision and the scale parameters of the decimal field determine the target type. In the order of NUMERIC, BIGNUMERIC, and STRING, a type is picked if it is in the specified list and if it supports the precision and the scale. STRING supports all precision and scale values. If none of the listed types supports the precision and the scale, the type supporting the widest range in the specified list is picked, and if a value exceeds the supported range when reading the data, an error will be thrown. Example: Suppose the value of this field is ["NUMERIC", "BIGNUMERIC"]. If (precision,scale) is:

This field cannot contain duplicate types. The order of the types in this field is ignored. For example, ["BIGNUMERIC", "NUMERIC"] is the same as ["NUMERIC", "BIGNUMERIC"] and NUMERIC always takes precedence over BIGNUMERIC. Defaults to ["NUMERIC", "STRING"] for ORC and ["NUMERIC"] for the other file formats.

Example:

$loadJobConfig->decimalTargetTypes(['NUMERIC', 'BIGNUMERIC']);
Parameter Name Description decimalTargetTypes string[]

An array of target decimal types. Acceptable values include "DECIMAL_TARGET_TYPE_UNSPECIFIED", "NUMERIC", "BIGNUMERIC", "STRING".

destinationTableProperties Parameter Name Description destinationTableProperties array

Properties for the destination table.

fileSetSpecType

Specifies how source URIs are interpreted for constructing the file set to load. By default, source URIs are expanded against the underlying storage. You can also specify manifest files to control how the file set is constructed. This option is only applicable to object storage systems.

Example:

$loadJobConfig->fileSetSpecType('FILE_SET_SPEC_TYPE_NEW_LINE_DELIMITED_MANIFEST');
Parameter Name Description fileSetSpecType string

The file set specification type. Acceptable values include "FILE_SET_SPEC_TYPE_FILE_SYSTEM_MATCH", "FILE_SET_SPEC_TYPE_NEW_LINE_DELIMITED_MANIFEST".

jsonExtension

Load option to be used together with source_format newline-delimited JSON to indicate that a variant of JSON is being loaded.

To load newline-delimited GeoJSON, specify GEOJSON (and source_format must be set to NEWLINE_DELIMITED_JSON).

Example:

$loadJobConfig->jsonExtension('GEOJSON');
Parameter Name Description jsonExtension string

The JSON extension type. Acceptable values include "JSON_EXTENSION_UNSPECIFIED", "GEOJSON".

nullMarkers

A list of strings represented as SQL NULL value in a CSV file.

null_marker and null_markers can't be set at the same time. If null_marker is set, null_markers has to be not set. If null_markers is set, null_marker has to be not set. If both null_marker and null_markers are set at the same time, a user error would be thrown. Any strings listed in null_markers, including empty string would be interpreted as SQL NULL. This applies to all column types.

Example:

$loadJobConfig->nullMarkers(['\\N', 'NULL']);
Parameter Name Description nullMarkers string[]

An array of strings to be interpreted as NULL.

parquetOptions

See also:

Example: $loadJobConfig->parquetOptions([ 'enumAsString' => true ]);

Parameter Name Description parquetOptions array

Additional Parquet options.

preserveAsciiControlCharacters

When sourceFormat is set to "CSV", this indicates whether the embedded ASCII control characters (the first 32 characters in the ASCII-table, from '\x00' to '\x1F') are preserved.

Example:

$loadJobConfig->preserveAsciiControlCharacters(true);
Parameter Name Description preserveAsciiControlCharacters bool

Whether to preserve ASCII control characters.

sourceColumnMatch

Controls the strategy used to match loaded columns to the schema.

If not set, a sensible default is chosen based on how the schema is provided. If autodetect is used, then columns are matched by name. Otherwise, columns are matched by position. This is done to keep the behavior backward-compatible.

Example:

$loadJobConfig->sourceColumnMatch('NAME');
Parameter Name Description sourceColumnMatch string

The column match strategy. Acceptable values include "SOURCE_COLUMN_MATCH_UNSPECIFIED", "POSITION", "NAME".

timeFormat

Date format used for parsing TIME values.

Example:

$loadJobConfig->timeFormat('%H:%M:%S');
Parameter Name Description timeFormat string

The time format string.

timeZone

Default time zone that will apply when parsing timestamp values that have no specific time zone.

Example:

$loadJobConfig->timeZone('America/Los_Angeles');
Parameter Name Description timeZone string

The default time zone string.

timestampFormat

Date format used for parsing TIMESTAMP values.

Example:

$loadJobConfig->timestampFormat('%Y-%m-%d %H:%M:%S%F');
Parameter Name Description timestampFormat string

The timestamp format string.

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025-08-07 UTC.

[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-07 UTC."],[],[]]


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4