Vivek Nimje
Vivek Nimje

Reputation: 21

gpfs file access through Java API/Python

I am new to IBM-GPFS. As we can access HDFS via Java API, python scripting. Is there any similar way to access GPFS files? Please suggest me the solution.

Upvotes: 2

Views: 815

Answers (1)

Demyn
Demyn

Reputation: 1240

GPFS is an actual file system (e.g. a VFS on Linux). It does not require an special APIs to access its files. Simply use the open, read, and write functions supported by your programming environment.

Upvotes: 5

Related Questions