APIHub
Back to Explore

DataLakeStoreFileSystemManagementClient

Creates an Azure Data Lake Store filesystem client.

Cloud
none
HTTPS
CORS: Unknown
Visit official documentation

Latency

Not monitored yet

Uptime

Not monitored yet

Playground

Verified

live

Endpoints

REST · JSON
POST

/WebHdfsExt/{path}

Appends to the specified file, optionally first creating the file if it does not yet exist. This method supports multiple concurrent appends to the file. NOTE: The target must not contain data added by Create or normal (serial) Append. ConcurrentAppend and Append cannot be used interchangeably; once a target file has been modified using either of these append options, the other append option cannot be used on the target file. ConcurrentAppend does not guarantee order and can result in duplicated data landing in the target file.

  • path (path, required) — The Data Lake Store path (starting with '/') of the file to which to append using concurrent append.
  • appendMode (query) — Indicates the concurrent append call should create the file if it doesn't exist or just open the existing file for append
  • op (query, required) — The constant value for the operation.
  • Transfer-Encoding (header, required) — Indicates the data being sent to the server is being streamed in chunks.
  • syncFlag (query) — Optionally indicates what to do after completion of the concurrent append. DATA indicates that more data will be sent immediately by the client, the file handle should remain open/locked, and file metadata (including file length, last modified time) should NOT get updated. METADATA indicates that more data will be sent immediately by the client, the file handle should remain open/locked, and file metadata should get updated. CLOSE indicates that the client is done sending data, the file handle should be closed/unlocked, and file metadata should get updated.
  • api-version (query, required) — Client Api Version.
PUT

/WebHdfsExt/{path}

Sets or removes the expiration time on the specified file. This operation can only be executed against files. Folders are not supported.

  • path (path, required) — The Data Lake Store path (starting with '/') of the file on which to set or remove the expiration time.
  • expiryOption (query, required) — Indicates the type of expiration to use for the file: 1. NeverExpire: ExpireTime is ignored. 2. RelativeToNow: ExpireTime is an integer in milliseconds representing the expiration date relative to when file expiration is updated. 3. RelativeToCreationDate: ExpireTime is an integer in milliseconds representing the expiration date relative to file creation. 4. Absolute: ExpireTime is an integer in milliseconds, as a Unix timestamp relative to 1/1/1970 00:00:00.
  • expireTime (query) — The time that the file will expire, corresponding to the ExpiryOption that was set.
  • op (query, required) — The constant value for the operation.
  • api-version (query, required) — Client Api Version.
GET

/webhdfs/v1/{path}

Checks if the specified access is available at the given path.

  • path (path, required) — The Data Lake Store path (starting with '/') of the file or directory for which to check access.
  • fsaction (query, required) — File system operation read/write/execute in string form, matching regex pattern '[rwx-]{3}'
  • op (query, required) — The constant value for the operation.
  • api-version (query, required) — Client Api Version.

3 endpoints auto-detected

curl -X POST \
  "https://azure.local/WebHdfsExt/{path}"

azure.local · HTTPS only