DataLakeStoreFileSystemManagementClient (preview:2015-10-01)

2025/09/19 • 4 new methods

FileSystem_ConcurrentAppend (new)
Description Appends to the specified file. This method supports multiple concurrent appends to the file. NOTE: ConcurrentAppend and normal (serial) Append CANNOT be used interchangeably; once a file has been appended to using either of these append options, it can only be appended to using that append option. ConcurrentAppend DOES NOT guarantee order and can result in duplicated data landing in the target file. In order to close a file after using ConcurrentAppend, call the Flush method.
Reference Link ¶

⚼ Request

POST:  /WebHdfsExt/{filePath}
{
filePath: string ,
streamContents: object ,
appendMode: string ,
op: string ,
Transfer-Encoding: string ,
api-version: string ,
}

⚐ Response (200)

{}

⚐ Response (default)

{
RemoteException:
{
exception: string ,
javaClassName: string ,
message: string ,
}
,
}
FileSystem_SetFileExpiry (new)
Description Sets or removes the expiration time on the specified file. This operation can only be executed against files. Folders are not supported.
Reference Link ¶

⚼ Request

PUT:  /WebHdfsExt/{filePath}
{
filePath: string ,
expiryOption: string ,
expireTime: integer ,
op: string ,
api-version: string ,
}

⚐ Response (200)

{}

⚐ Response (default)

{
RemoteException:
{
exception: string ,
javaClassName: string ,
message: string ,
}
,
}
FileSystem_CheckAccess (new)
Description Checks if the specified access is available at the given path.
Reference Link ¶

⚼ Request

GET:  /webhdfs/v1/{path}
{
path: string ,
fsaction: string ,
op: string ,
api-version: string ,
}

⚐ Response (200)

{}

⚐ Response (default)

{
RemoteException:
{
exception: string ,
javaClassName: string ,
message: string ,
}
,
}
FileSystem_Mkdirs (new)
Description Creates a directory.
Reference Link ¶

⚼ Request

PUT:  /webhdfs/v1/{path}
{
path: string ,
op: string ,
api-version: string ,
}

⚐ Response (200)

{
boolean: boolean ,
}

⚐ Response (default)

{
RemoteException:
{
exception: string ,
javaClassName: string ,
message: string ,
}
,
}