58
1 Introduction to Scientific Data Management [email protected] November 2017 http://www.cism.ucl.ac.be/training

Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

  • Upload
    others

  • View
    1

  • Download
    0

Embed Size (px)

Citation preview

Page 1: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

1

Introduction to Scientific Data Management

[email protected] 2017

http://www.cism.ucl.ac.be/training

Page 2: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

2

Goal of this session:

“Share tools, tips and tricks related to the storage, transfer, and sharing

of scientific data”

http://www.cism.ucl.ac.be/training

Page 3: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

3

1.

Data storageBlock – File – Object

Databases

Page 4: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

4

Data storage

Medium (Flash, Hard Drives, Tapes, DRAM)

LVM

RAID JBODErasure coding

software RAID

Local filesystem Block storage

Attachment (IDE, SAS, SATA, iSCSI, ATAoE, FC)

RDBMSObj store

Global filesystemNoSQL

Schema Serialization (file formats, etc)

Page 5: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

5

Storage abstraction levels

Page 6: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

6

Storage Medium Technologies

http://www.slideshare.net/IMEXresearch/ss-ds-ready-for-enterprise-cloud

Page 7: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

7

Storage performances

http://www.slideshare.net/IMEXresearch/ss-ds-ready-for-enterprise-cloud

Page 8: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

8

Storage safety (RAID)

https://www.extremetech.com/computing/170748-how-long-do-hard-drives-actually-live-for

Page 9: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

9

Storage safety (RAID)

https://en.wikipedia.org/wiki/Standard_RAID_levels

Page 10: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

10

Storage abstraction levels

Page 11: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

11

(local) Filesystems

http://arstechnica.com/information-technology/2014/01/bitrot-and-atomic-cows-inside-next-gen-filesystems/

Generation 0: No system at all. There was just an arbitrary stream of data. Think punchcards, data on audiocassette, Atari 2600 ROM carts.

Generation 1: Early random access. Here, there are multiple named files on one device with no folders or other metadata. Think Apple ][ DOS (but not ProDOS!) as one example.

Generation 2: Early organization (aka folders). When devices became capable of holding hundreds of files, better organization became necessary. We're referring to TRS-DOS, Apple //c ProDOS, MS-DOS FAT/FAT32, etc.

Generation 3: Metadata—ownership, permissions, etc. As the user count on machines grew higher, the ability torestrict and control access became necessary. This includes AT&T UNIX, Netware, early NTFS, etc.

Generation 4: Journaling! This is the killer feature defining all current, modern filesystems—ext4, modern NTFS,UFS2, XFS, you name it. Journaling keeps the filesystem from becoming inconsistent in the event of a crash,making it much less likely that you'll lose data, or even an entire disk, when the power goes off or the kernelcrashes.

Generation 5: Copy on Write snapshots, Per-block checksumming, Volume management, Far-future scalability,Asynchronous incremental replication, Online compression. Generation 5 filesystems are Btrfs and ZFS.

Page 12: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

12

Network filesystem

NAS: ex. NFS SAN: ex. GFS2

One source many consumers

Pictures from https://www.redhat.com/magazine/008jun05/features/gfs_nfs/

Page 13: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

13

Parallel / distributed filesystem

ex: Lustre, GPFS, BeeGeeFS GlusterFSMany sources many consumers

Pictures from https://www.redhat.com/magazine/008jun05/features/gfs_nfs/

Page 14: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

14

Special filesystems – in memory

Page 15: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

15

Filesystems

Page 16: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

16

What filesystem for what usage

● Home (NFS) : Small size, Small I/Os

● Global scratch (parallel FS) : Large size, Large I/Os

● Local scratch (local FS): Medium size, Large I/Os

● In-memory (tmpfs): Small Size, Very Large I/Os

● Mass storage (NFS); Large size, Small I/Os

Page 17: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

17

Storage abstraction levels

Page 18: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

18

Text File Formats – JSON, YML, XML, INI

Page 19: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

19

Text File Formats – CSV,TSV

Page 20: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

20

Binary File Formats – CDF, HDF

http://pro.arcgis.com/en/pro-app/help/data/multidimensional/fundamentals-of-netcdf-data-storage.htm

Page 21: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

21

Binary File Formats – CDF, HDF

https://www.nersc.gov/users/training/online-tutorials/introduction-to-scientific-i-o/

Page 22: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

22

Binary File Formats – CDF, HDF

Page 23: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

23

What file format for what usage

● Meta data

– Configuration file: INI, YAML

– Result with context information: JSON● Data

– Small data (kBs): CSV, TSV

– Medium data (MBs): compressed CSV

– Large data (GBs): netCDF, HDF5, DXMF

– Huge data (TBs): Database, Object store (“loss of innocence”)

Use dedicated libraries to write and read them

Page 24: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

24

Storage abstraction levels

Page 25: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

25

Object storage

● Object: data (e.g. file) + meta data

● Often built on erasure coding (“software RAID”)

● Scale out easily

● Useful for web applications but coming to scientific world

● Access with REST API (through HTTP)

Page 26: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

26

RDBMS

Pictures from http://www.ibm.com/developerworks/library/x-matters8/

● Mostly needed for categorical data and alphanumericaldata (not suited for matrices, but good for end-results)

● Indexes make finding a data element is very fast(and computing sums, maxima, etc.)

● Encodes relations between data (constraints, etc)

● Atomicity, Consistency, Isolation, and Durability

Page 27: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

27

NoSQL

Pictures from http://www.tomsitpro.com/articles/rdbms-sql-cassandra-dba-developer,2-547-2.html

● Mostly needed forunstructured, semi-structured, andpolymorphic data

● Scaling out very easy

● Basic Availability,Soft-state, Eventualconsistency

Page 28: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

28

When to use a database?

– when you have a large number of small files

– when you perform a lot of direct writes in a large file

– when you want to keep structure/relations between data

– when software crashes have a non-negligible probability

– when files are updated by several processes● When not to use:

– only sequential access

– simple matrices/vectors, etc.

– direct access on fixed-size records and no structure

Page 29: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

29

Example: run a redis server

● Create a redis directory

● Copy /etc/redis.conf and modify the following lines:

Choose aport atrandom

Page 30: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

30

Example: run a redis server

● Start the redis server

● Store values (normally you would do this in a Slurm job)

Page 31: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

31

Example: run a redis server

● Check the values

● Retrieve the values

Page 32: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

32

Example: run a redis server

Page 33: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

33

Example: NFS corruption

Page 34: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

34

2.

Data transferfaster and less secure

parallel transfers

Page 35: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

35

Fastest: No SSH at all

● Need friendly firewall (choose direction accordingly)

● Only over trusted networks

● If rsh is installed: rcp instead of scp

Page 36: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

36

Fastest: No SSH at all

● Need friendly firewall (choose direction accordingly)

● Only over trusted networks

● If rsh is installed: rcp instead of scp

● If rsh is not installed: nc on both ends

Page 37: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

37

Parallel data transfer: bbcp

● Better use of the bandwidth than SCP

● Needs to be installed on both sides (easy to install)

● Needs friendly firewalls

http://www.slac.stanford.edu/%7Eabh/bbcp/#_Toc392015167

Page 38: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

38

Parallel data transfers: parsync

http://moo.nac.uci.edu/~hjm/parsync/

Page 39: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

39

Resuming transfers

● When nothing changed but the transfer was interrupted

– append: do not re-check partially transmitted files andresume the transfer where it was abandoned assumingfirst transfer attempt was with scp or with rsync --inplace

Page 40: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

40

Resuming rsync transfers

● When a transfer was interrupted

– size-only: do not perform byte-level file comparison

Page 41: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

41

Parallel data transfers: sbcast

Page 42: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

42

Transferring ZOT files

● Zillions Of Tiny files

● More meta-data than data → large overhead for rsync

● Solution: Pre-tar or tar on the fly

● Needs friendly firewall

● Also avoid 'ls' and '*' as they sort the output. Favor 'find'

Page 43: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

43

3.

Data sharingwith other users (Unix permissions, Encryption)

with external users (Owncloud)

Page 44: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

44

Data sharing

Data sharing with other users

Page 45: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

45

Sharing with all other users

Page 46: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

46

Sharing with the group

Page 47: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

47

Sharing and hiding

Page 48: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

48

Sharing and encrypting

Page 49: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

49

Data sharing

Data sharing with external users

Page 50: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

50

Data sharing with external users

● owncloud

CISMlogin

Page 51: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

51

Dropbox-like

Page 52: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

52

External SFTP connectors

Page 53: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

53

Dropbox-like

Page 54: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

54

My home on Manneback

Page 55: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

55

Can create a share URL

Page 56: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

56

And distribute it

Page 57: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

57

Exercise:

1. Run a redis server on Hmem2. Populate it from compute nodes with random data3. Extract the data from it and create an HDF5 file4. Encrypt the file5. Copy it to lemaitre2 using nc6. Make it available to others who know of its name

http://www.cism.ucl.ac.be/training

Page 58: Introduction to Scientific Data Management · – Result with context information: JSON ... Indexes make finding a data element is very fast (and computing sums, maxima, etc.)

58

Summary:

Storage: choose the right filesystem and the right file format

Transfer: use the parallel tools when possible andlimit encryption in favor of throughput

Sharing: use all the potential of the UNIXpermissions and try Owncloud

http://www.cism.ucl.ac.be/training