{"id":20273,"date":"2013-05-10T12:52:08","date_gmt":"2013-05-10T07:22:08","guid":{"rendered":"http:\/\/vskills.in\/certification\/tutorial\/?p=20273"},"modified":"2024-04-12T14:16:38","modified_gmt":"2024-04-12T08:46:38","slug":"data-model-and-terms","status":"publish","type":"page","link":"https:\/\/www.vskills.in\/certification\/tutorial\/data-model-and-terms\/","title":{"rendered":"Data model and terms"},"content":{"rendered":"<p><a class=\"vsc\" href=\"http:\/\/www.vskills.in\/certification\/Certified-Cassandra-Professional\"><span class=\"vsc-cn\" style=\"text-align: center;\"><span style=\"color: red;\">Certify and Increase Opportunity.<\/span><br \/>\n<span style=\"color: green;\">Be <\/span><br \/>\nGovt. Certified Apache Cassandra Professional<br \/>\n<\/span><\/a><\/p>\n<p>Data model and terms<\/p>\n<p style=\"text-align: center;\"><a ref=\"magnificPopup\" href=\"http:\/\/vskills.in\/certification\/tutorial\/wp-content\/uploads\/2013\/05\/Apache-Cassandra.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-32241\" src=\"http:\/\/vskills.in\/certification\/tutorial\/wp-content\/uploads\/2013\/05\/Apache-Cassandra.jpg\" alt=\"Apache Cassandra\" width=\"276\" height=\"182\"><\/a><\/p>\n<p>Cassandra is essentially a hybrid between a key-value and a row-oriented (or tabular) database.<\/p>\n<hr>\n<p>A column family resembles a table in an RDBMS. Column families contain rows and columns. Each row is uniquely identified by a row key. Each row has multiple columns, each of which has a name, value, and a timestamp. Unlike a table in an RDBMS, different rows in the same column family do not have to share the same set of columns, and a column may be added to one or multiple rows at any time.<\/p>\n<hr>\n<p>Each key in Cassandra corresponds to a value which is an object. Each key has values as columns, and columns are grouped together into sets called column families. Also, each column family can be grouped in super column families.<\/p>\n<p>Thus, each key identifies a row of a variable number of elements. These column families could be considered then as tables. A table in Cassandra is a distributed multi dimensional map indexed by a key.<\/p>\n<p>Furthermore, applications can specify the sort order of columns within a Super Column or Simple Column family.<\/p>\n<hr>\n<p>Cassandra&#8217;s data model is a partitioned row store with tunable consistency. Rows are organized into tables; the first component of a table&#8217;s primary key is the partition key; within a partition, rows are clustered by the remaining columns of the key. Other columns may be indexed separately from the primary key.<\/p>\n<p>Tables may be created, dropped, and altered at runtime without blocking updates and queries.<\/p>\n<p>Cassandra does not support joins or subqueries, except for batch analysis via Hadoop. Rather, Cassandra emphasizes denormalization through features like collections.<\/p>\n<hr>\n<p><span style=\"text-decoration: underline;\">Data model details<\/span><br \/>\nOn the surface, Cassandra\u2019s data model seems to be quite relational. With this in mind, diving deeper into ColumnFamilies, SuperColumns and the likes, will make Cassandra look like an unfinished RDBMS, lacking features like JOINS and most rich-query capabilities.<\/p>\n<p>To understand why databases like Cassandra, HBase and BigTable (I\u2019ll call them DSS, Distributed Storage Services, from now on) were designed the way they are, we\u2019ll first have to understand what they were built to be used for.<\/p>\n<p>DSS were designed to handle enormous amounts of data, stored in billions of rows on large clusters. Relational databases incorporate a lot of things that make it hard to efficiently distribute them over multiple machines. DSS simply remove some or all of these ties. No operations are allowed, that require scanning extensive parts of the dataset, meaning no JOINS or rich-queries.<\/p>\n<p>There are only two ways to query, by key or by key-range. The reason DSS keep their data model to the bare minimum is the fact, that a single table is far easier to distribute over multiple machines, than several, normalized relations or graphs.<\/p>\n<p>Think of the ColumnFamily model as a (distributed Hash-)Map with up to three dimensions. The two-dimensional setup consists of just a ColumnFamily with some columns in it, \u201csome\u201d meaning a couple of billion if you so wish. So a ColumnFamily is just a map of columns.<\/p>\n<p>I have yet to figure out why, but it seems as if all these terms are just names for different dimensions of a map. A three-dimensional Cassandra \u201ctable\u201d would be achieved by putting SuperColumns into a ColumnFamily, thus making it a SuperColumnFamily (please hold back any cries of astonishment), a map of a map of columns.<\/p>\n<p>In this setup, the SuperColumnFamily would represent the highest dimension and the SuperColumn would represent the two remaining dimensions, taking the place of the ColumnFamily in the previous example. This multi-dimensional map contains columns, triplets consisting of a name, a value and a timestamp.<\/p>\n<p>Data storage in Cassandra is row-oriented, meaning that all contents of a row are serialized together on disk. Every row of columns has its unique key. Each row can hold up to 2 billion columns [\u00b2]. Furthermore, each row must fit onto a single server, because data is partitioned solely by row-key. As discussed in greater detail here, some other limitations apply, that in most cases should not concern you.<\/p>\n<p>Various terminologies in Apache Cassandra is summarized as &#8211;<\/p>\n<div>\n<p><strong>A<\/strong><\/p>\n<\/div>\n<p><strong>Aggregation<\/strong> \u2013 a process of searching, gathering and presenting data<br \/>\n<strong>Algorithms<\/strong> \u2013 a mathematical formula that can perform certain analyses on data<br \/>\n<strong>Analytics<\/strong> \u2013 the discovery of insights in data<br \/>\n<strong>Anomaly detection<\/strong> \u2013 the search for data items in a dataset that do not match a projected pattern or expected behaviour. Anomalies are also called outliers, exceptions, surprises or contaminants and they often provide critical and actionable information.<br \/>\n<strong>Anonymization<\/strong> \u2013 making data anonymous; removing all data points that could lead to identify a person<br \/>\n<strong>Application<\/strong> \u2013 computer software that enables a computer to perform a certain task<br \/>\n<strong>Artificial Intelligence<\/strong> \u2013 developing intelligence machines and software that are capable of perceiving the environment and take corresponding action when required and even learn from those actions.<\/p>\n<h3><strong>B<\/strong><\/h3>\n<p><strong>Behavioural Analytics<\/strong> \u2013 analytics that informs about the how, why and what instead of just the who and when. It looks at humanized patterns in the data<br \/>\n<strong>Big Data Scientist<\/strong> \u2013 someone who is able to develop the algorithms to make sense out of big data<br \/>\n<strong>Big data startup<\/strong> \u2013 a young company that has developed new big data technology<br \/>\n<strong>Biometrics<\/strong> \u2013 the identification of humans by their characteristics<br \/>\n<strong>Brontobytes<\/strong> \u2013 approximately 1000 Yottabytes and the size of the digital universe tomorrow. A Brontobyte contains 27 zeros<br \/>\n<strong>Business Intelligence<\/strong> \u2013 the theories, methodologies and processes to make data understandable<\/p>\n<h3><strong>C<\/strong><\/h3>\n<p><strong>Classification analysis<\/strong> &#8211;&nbsp; a systematic process for obtaining important and relevant information about data, also meta data called; data about data.<br \/>\n<strong>Cloud computing<\/strong> \u2013 a distributed computing system over a network used for storing data off-premises<br \/>\n<strong>Clustering analysis<\/strong> \u2013 the process of identifying objects that are similar to each other and cluster them in order to understand the differences as well as the similarities within the data.<br \/>\n<strong>Cold data storage<\/strong> \u2013 storing old data that is hardly used on low-power servers. Retrieving the data will take longer<br \/>\n<strong>Comparative analysis<\/strong> \u2013 it ensures a step-by-step procedure of comparisons and calculations to detect patterns within very large data sets.<br \/>\n<strong>Complex structured data<\/strong> \u2013 data that are composed of two or more complex, complicated, and interrelated parts that cannot be easily interpreted by structured query languages and tools.<br \/>\n<strong>Computer generated data<\/strong> \u2013 data generated by computers such as log files<br \/>\n<strong>Concurrency <\/strong>\u2013 performing and executing multiple tasks and processes at the same time<br \/>\n<strong>Correlation analysis<\/strong> \u2013 the analysis of data to determine a relationship between variables and whether that relationship is negative (- 1.00) or positive (+1.00).<br \/>\n<strong>Customer Relationship Management <\/strong>\u2013 managing the sales and business processes, big data will affect CRM strategies<\/p>\n<h3><strong>D<\/strong><\/h3>\n<p><strong>Dashboard <\/strong>\u2013 a graphical representation of the analyses performed by the algorithms<br \/>\n<strong>Data aggregation tools <\/strong>&#8211; the process of transforming scattered data from numerous sources into a single new one.<br \/>\n<strong>Data analyst <\/strong>\u2013 someone analysing, modelling, cleaning or processing data<br \/>\n<strong>Database<\/strong> \u2013 a digital collection of data stored via a certain technique<br \/>\n<strong>Database-as-a-Service<\/strong> \u2013 a database hosted in the cloud on a pay per use basis, for example Amazon Web Services or<br \/>\n<strong>Database Management System<\/strong> \u2013 collecting, storing and providing access of data<br \/>\n<strong>Data centre<\/strong> \u2013 a physical location that houses the servers for storing data<br \/>\n<strong>Data cleansing<\/strong> \u2013 the process of reviewing and revising data in order to delete duplicates, correct errors and provide consistency<br \/>\n<strong>Data custodian<\/strong> \u2013 someone who is responsible for the technical environment necessary for data storage<br \/>\n<strong>Data ethical guidelines<\/strong> \u2013 guidelines that help organizations being transparent with their data, ensuring simplicity, security and privacy<br \/>\n<strong>Data feed<\/strong> \u2013 a stream of data such as a Twitter feed or RSS<br \/>\n<strong>Data marketplace <\/strong>\u2013 an online environment to buy and sell data sets<br \/>\n<strong>Data mining<\/strong> \u2013 the process of finding certain patterns or information from data sets<br \/>\n<strong>Data modelling<\/strong> \u2013 the analysis of data objects using data modelling techniques to create insights from the data<br \/>\n<strong>Data set <\/strong>\u2013 a collection of data<br \/>\n<strong>Data virtualization<\/strong> \u2013 a data integration process in order to gain more insights. Usually it involves databases, applications, file systems, websites, big data techniques, etc.)<br \/>\n<strong>De-identification<\/strong> \u2013 same as anonymization; ensuring a person cannot be identified through the data<br \/>\n<strong>Discriminant analysis <\/strong>&#8211; cataloguing of the data; distributing data into groups, classes or categories. A statistical analysis used where certain groups or clusters in data are known upfront and that uses that information to derive the classification rule.<br \/>\n<strong>Distributed File System <\/strong>\u2013 systems that offer simplified, highly available access to storing, analysing and processing data<br \/>\n<strong>Document Store Databases<\/strong> \u2013 a document-oriented database that is especially designed to store, manage and retrieve documents, also known as semi structured data.<\/p>\n<h3><strong>E<\/strong><\/h3>\n<p><strong>Exploratory analysis<\/strong> \u2013 finding patterns within data without standard procedures or methods. It is a means of discovering the data and to find the data sets main characteristics.<br \/>\n<strong>Exabytes<\/strong> \u2013 approximately 1000 petabytes or 1 billion gigabytes. Today we create one Exabyte of new information globally on a daily basis.<br \/>\n<strong>Extract, Transform and Load (ETL) <\/strong>\u2013 a process in a database and data warehousing meaning extracting the data from various sources, transforming it to fit operational needs and loading it into the database<\/p>\n<h3><strong>F<\/strong><\/h3>\n<p><strong>Failover <\/strong>\u2013 switching automatically to a different server or node should one fail<br \/>\n<strong>Fault-tolerant design<\/strong> \u2013 a system designed to continue working even if certain parts fail<\/p>\n<h3><strong>G<\/strong><\/h3>\n<p><strong>Gamification<\/strong> \u2013 using game elements in a non game context; very useful to create data therefore coined as the friendly scout of big data<br \/>\n<strong>Graph Databases<\/strong> \u2013 they use graph structures (a finite set of ordered pairs or certain entities), with edges, properties and nodes for data storage. It provides index-free adjacency, meaning that every element is directly linked to its neighbour element.<br \/>\n<strong>Grid computing<\/strong> \u2013 connecting different computer systems from various location, often via the cloud, to reach a common goal<\/p>\n<h3><strong>H<\/strong><\/h3>\n<p><strong>Hadoop<\/strong> \u2013 an open-source framework that is built to enable the process and storage of big data across a distributed file system<br \/>\n<strong>HBase<\/strong> \u2013an open source, non-relational, distributed database running in conjunction with Hadoop<br \/>\n<strong>HDFS<\/strong> \u2013 Hadoop Distributed File System; a distributed file system designed to run on commodity hardware<br \/>\n<strong>High-Performance-Computing (HPC) <\/strong>\u2013 using supercomputers to solve highly complex and advanced computing problems<\/p>\n<h3><strong>I<\/strong><\/h3>\n<p><strong>In-memory <\/strong>\u2013 a database management system stores data on the main memory instead of the disk, resulting is very fast processing, storing and loading of the data<br \/>\n<strong>Internet of Things <\/strong>\u2013 ordinary devices that are connected to the internet at any time any where via sensors<\/p>\n<h3><strong>J<\/strong><\/h3>\n<p><strong>Juridical data compliance<\/strong><strong> \u2013 <\/strong>relevant when you use cloud solutions and where the data is stored in a different country or continent. Be aware that data stored in a different country has to oblige to the law in that country.<\/p>\n<h3><strong>K<\/strong><\/h3>\n<p><strong>KeyValue Databases<\/strong> \u2013 they store data with a primary key, a uniquely identifiable record, which makes easy and fast to look up. The data stored in a KeyValue is normally some kind of primitive of the programming language.<\/p>\n<h3><strong>L<\/strong><\/h3>\n<p><strong>Latency <\/strong>\u2013 a measure of time delayed in a system<br \/>\n<strong>Legacy system<\/strong> \u2013 an old system, technology or computer system that is not supported any more<br \/>\n<strong>Load balancing <\/strong>\u2013 distributing workload across multiple computers or servers in order to achieve optimal results and utilization of the system<br \/>\n<strong>Location data <\/strong>\u2013 GPS data describing a geographical location<br \/>\n<strong>Log file <\/strong>\u2013 a file automatically created by a computer to record events that occur while operational<\/p>\n<h3><strong>M<\/strong><\/h3>\n<p><strong>Machine2Machine data <\/strong>\u2013 two or more machines that are communicating with each other<br \/>\n<strong>Machine data<\/strong> \u2013 data created by machines via sensors or algorithms<br \/>\n<strong>Machine learning <\/strong>\u2013 part of artificial intelligence where machines learn from what they are doing and become better over time<br \/>\n<strong>MapReduce<\/strong> \u2013 a software framework for processing vast amounts of data<br \/>\n<strong>Massively Parallel Processing (MPP) <\/strong>\u2013 using many different processors (or computers) to perform certain computational tasks at the same time<br \/>\n<strong>Metadata<\/strong> \u2013 data about data; gives information about what the data is about.<br \/>\n<strong>MongoDB<\/strong> \u2013 an open-source NoSQL database<br \/>\n<strong>Multi-Dimensional Databases <\/strong>\u2013 a database optimized for data online analytical processing (OLAP) applications and for data warehousing.<br \/>\n<strong>MultiValue Databases<\/strong> \u2013 they are a type of NoSQL and multidimensional databases that understand 3 dimensional data directly. They are primarily giant strings that are perfect for manipulating HTML and XML strings directly<\/p>\n<h3><strong>N<\/strong><\/h3>\n<p><strong>Natural Language Processing<\/strong> \u2013 a field of computer science involved with interactions between computers and human languages<br \/>\n<strong>Network analysis<\/strong> \u2013 viewing relationships among the nodes in terms of the network or graph theory, meaning analysing connections between nodes in a network and the strength of the ties.<br \/>\n<strong>NewSQL<\/strong> \u2013 an elegant, well-defined database system that is easier to learn and better than <strong>SQL<\/strong>. It is even newer than NoSQL<br \/>\n<strong>NoSQL<\/strong> \u2013 sometimes referred to as \u2018Not only SQL\u2019 as it is a database that doesn\u2019t adhere to traditional relational database structures. It is more consistent and can achieve higher availability and horizontal scaling.<\/p>\n<h3><strong>O<\/strong><\/h3>\n<p><strong>Object Databases<\/strong> \u2013 they store data in the form of objects, as used by object-oriented programming. They are different from relational or graph databases and most of them offer a query language that allows object to be found with a declarative programming approach.<br \/>\n<strong>Object-based Image Analysis<\/strong> \u2013 analysing digital images can be performed with data from individual pixels, whereas object-based image analysis uses data from a selection of related pixels, called objects or image objects.<br \/>\n<strong>Operational Databases<\/strong> \u2013 they carry out regular operations of an organisation and are generally very important to a business. They generally use online transaction processing that allows them to enter, collect and retrieve specific information about the company.<br \/>\n<strong>Optimization analysis <\/strong>&#8211; the process of optimization during the design cycle of products done by algorithms. It allows companies to virtually design many different variations of a product and to test that product against pre-set variables.<br \/>\n<strong>Ontology<\/strong> \u2013 ontology represents knowledge as a set of concepts within a domain and the relationships between those concepts<br \/>\n<strong>Outlier detection<\/strong> \u2013 an outlier is an object that deviates significantly from the general average within a dataset or a combination of data. It is numerically distant from the rest of the data and therefore, the outlier indicates that something is going on and generally therefore requires additional analysis.<\/p>\n<h3><strong>P<\/strong><\/h3>\n<p><strong>Pattern Recognition <\/strong>\u2013 identifying patterns in data via algorithms to make predictions of new data coming from the same source.<br \/>\n<strong>Petabytes <\/strong>&#8211; approximately 1000 terabytes or 1 million gigabytes. The CERN Large Hydron Collider generates approximately 1 petabyte per second<br \/>\n<strong>Platform-as-a-Service<\/strong> \u2013 a services providing all the necessary infrastructure for cloud computing solutions<br \/>\n<strong>Predictive analysis<\/strong> \u2013 the most valuable analysis within big data as they help predict what someone is likely to buy, visit, do or how someone will behave in the (near) future. It uses a variety of different data sets such as historical, transactional, social or customer profile data to identify risks and opportunities.<br \/>\n<strong>Privacy <\/strong>\u2013 to seclude certain data \/ information about oneself that is deemed personal<br \/>\n<strong>Public data<\/strong> \u2013 public information or data sets that were created with public funding<\/p>\n<h3><strong>Q<\/strong><\/h3>\n<p><strong>Quantified Self<\/strong> \u2013 a movement to use application to track ones every move during the day in order to gain a better understanding about ones behaviour<br \/>\n<strong>Query <\/strong>\u2013 asking for information to answer a certain question<\/p>\n<h3><strong>R<\/strong><\/h3>\n<p><strong>Re-identification <\/strong>\u2013 combining several data sets to find a certain person within anonymized data<br \/>\n<strong>Regression analysis<\/strong> \u2013 to define the dependency between variables. It assumes a one-way causal effect from one variable to the response of another variable.<br \/>\n<strong>RFID<\/strong> \u2013 Radio Frequency Identification; a type of sensor using wireless non-contact radio-frequency electromagnetic fields to transfer data<br \/>\n<strong>Real-time data<\/strong> \u2013 data that is created, processed, stored, analysed and visualized within milliseconds<br \/>\n<strong>Recommendation engine<\/strong> \u2013 an algorithm that suggests certain products based on previous buying behaviour or buying behaviour of others<br \/>\n<strong>Routing analysis<\/strong> \u2013 finding the optimized routing using many different variables for a certain means of transport in order to decrease fuel costs and increase efficiency.<\/p>\n<h3><strong>S<\/strong><\/h3>\n<p><strong>Semi-structured data <\/strong>&#8211; a form a structured data that does not have a formal structure like structured data. It does however have tags or other markers to enforce hierarchy of records.<br \/>\n<strong>Sentiment Analysis<\/strong> \u2013 using algorithms to find out how people feel about certain topics<br \/>\n<strong>Signal analysis<\/strong> \u2013 it refers to the analysis of measurement of time varying or spatially varying physical quantities to analyse the performance of a product. Especially used with sensor data.<br \/>\n<strong>Similarity searches<\/strong> \u2013 finding the closest object to a query in a database, where the data object can be of any type of data.<br \/>\n<strong>Simulation analysis<\/strong> \u2013 a simulation is the imitation of the operation of a real-world process or system. A simulation analysis helps to ensure optimal product performance taking into account many different variables.<br \/>\n<strong>Smart grid<\/strong> \u2013 refers to using sensors within an energy grid to monitor what is going on in real-time helping to increase efficiency<br \/>\n<strong>Software-as-a-Service<\/strong> \u2013 a software tool that is used of the web via a browser<br \/>\n<strong>Spatial analysis<\/strong> \u2013 refers to analysing spatial data such geographic data or topological data to identify and understand patterns and regularities within data distributed in geographic space.<br \/>\n<strong>SQL<\/strong> \u2013 a programming language for retrieving data from a relational database<br \/>\n<strong>Structured data<\/strong> \u2013 data that is identifiable as it is organized in structure like rows and columns. The data resides in fixed fields within a record or file or the data is tagged correctly and can be accurately identified.<\/p>\n<h3><strong>T<\/strong><\/h3>\n<p><strong>Terabytes<\/strong> \u2013 approximately 1000 gigabytes. A terabyte can store up to 300 hours of high-definition video<br \/>\n<strong>Time series analysis <\/strong>&#8211; analysing well-defined data obtained through repeated measurements of time. The data has to be well defined and measured at successive points in time spaced at identical time intervals.<br \/>\n<strong>Topological Data Analysis<\/strong> \u2013 focusing on the shape of complex data and identifying clusters and any statistical significance that is present within that data.<br \/>\n<strong>Transactional data<\/strong> \u2013 dynamic data that changes over time<br \/>\n<strong>Transparency <\/strong>\u2013 consumers want to know what happens with their data and organizations have to be transparent about that<\/p>\n<h3><strong>U<\/strong><\/h3>\n<p><strong>Un-structured data <\/strong>&#8211; unstructured data is regarded as data that is in general text heavy, but may also contain dates, numbers and facts.<\/p>\n<h3><strong>V<\/strong><\/h3>\n<p><strong>Value<\/strong> \u2013 all that available data will create a lot of value for organizations, societies and consumers. Big data means big business and every industry will reap the benefits from big data.<br \/>\n<strong>Variability<\/strong> \u2013 it means that the meaning of the data can change (rapidly). In (almost) the same tweets for example a word can have a totally different meaning<br \/>\n<strong>Variety<\/strong> \u2013 data today comes in many different formats: structured data, semi-structured data, unstructured data and even complex structured data<br \/>\n<strong>Velocity<\/strong> \u2013 the speed at which the data is created, stored, analysed and visualized<br \/>\n<strong>Veracity<\/strong> \u2013 organizations need to ensure that the data is correct as well as the analyses performed on the data are correct. Veracity refers to the correctness of the data<br \/>\n<strong>Visualization<\/strong> \u2013 with the right visualizations, raw data can be put to use. Visualizations of course do not mean ordinary graphs or pie-charts. They mean complex graphs that can include many variables of data while still remaining understandable and readable<br \/>\n<strong>Volume<\/strong> \u2013 the amount of data, ranging from megabytes to brontobytes<\/p>\n<h3><strong>W<\/strong><\/h3>\n<p><strong>Weather data <\/strong>\u2013 an important open public data source that can provide organisations with a lot of insights if combined with other sources<\/p>\n<h3><strong>X<\/strong><\/h3>\n<p><strong>XML Databases<\/strong> \u2013 XML Databases allow data to be stored in XML format. XML databases are often linked to document-oriented databases. The data stored in an XML database can be queried, exported and serialized into any format needed.<\/p>\n<h3><strong>Y<\/strong><\/h3>\n<p><strong>Yottabytes<\/strong> \u2013 approximately 1000 Zettabytes, or 250 trillion DVD\u2019s. The entire digital universe today is 1 Yottabyte and this will double every 18 months.<\/p>\n<h3><strong>Z<\/strong><\/h3>\n<p><strong>Zettabytes<\/strong> \u2013 approximately 1000 Exabytes or 1 billion terabytes. Expected is that in 2016 over 1 zettabyte will cross our networks globally on a daily basis.<\/p>\n<div class=\"apply\">\n<h3>Apply for Apache Cassandra Certification Now!!<\/h3>\n<p><a href=\"http:\/\/www.vskills.in\/certification\/Certified-Cassandra-Professional\">http:\/\/www.vskills.in\/certification\/Certified-Apache-Cassandra-Professional<\/a><\/p>\n<h4>Go to Tutorial- <a href=\"https:\/\/www.vskills.in\/certification\/tutorial\/apache-cassandra-professional\/\" target=\"_blank\" rel=\"noopener noreferrer\"><strong>Certified Apache Cassandra Professional Tutorial<\/strong><\/a><\/h4>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Certify and Increase Opportunity. Be Govt. Certified Apache Cassandra Professional Data model and terms Cassandra is essentially a hybrid between a key-value and a row-oriented (or tabular) database. A column family resembles a table in an RDBMS. Column families contain rows and columns. Each row is uniquely identified by a row key. Each row has&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"categories":[63],"tags":[],"class_list":["post-20273","page","type-page","status-publish","hentry","category-apache-cassandra"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Data model and terms - Tutorial<\/title>\n<meta name=\"description\" content=\"Data model and terms Vskills Government Certification in Apache Cassandra is very popular in India amongst developers working in the IT Bid data industry.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.vskills.in\/certification\/tutorial\/data-model-and-terms\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Data model and terms - Tutorial\" \/>\n<meta property=\"og:description\" content=\"Data model and terms Vskills Government Certification in Apache Cassandra is very popular in India amongst developers working in the IT Bid data industry.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.vskills.in\/certification\/tutorial\/data-model-and-terms\/\" \/>\n<meta property=\"og:site_name\" content=\"Tutorial\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/vskills.in\/\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-12T08:46:38+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/vskills.in\/certification\/tutorial\/wp-content\/uploads\/2013\/05\/Apache-Cassandra.jpg\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"15 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/data-model-and-terms\/\",\"url\":\"https:\/\/www.vskills.in\/certification\/tutorial\/data-model-and-terms\/\",\"name\":\"Data model and terms - Tutorial\",\"isPartOf\":{\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/data-model-and-terms\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/data-model-and-terms\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/vskills.in\/certification\/tutorial\/wp-content\/uploads\/2013\/05\/Apache-Cassandra.jpg\",\"datePublished\":\"2013-05-10T07:22:08+00:00\",\"dateModified\":\"2024-04-12T08:46:38+00:00\",\"description\":\"Data model and terms Vskills Government Certification in Apache Cassandra is very popular in India amongst developers working in the IT Bid data industry.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/data-model-and-terms\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.vskills.in\/certification\/tutorial\/data-model-and-terms\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/data-model-and-terms\/#primaryimage\",\"url\":\"http:\/\/vskills.in\/certification\/tutorial\/wp-content\/uploads\/2013\/05\/Apache-Cassandra.jpg\",\"contentUrl\":\"http:\/\/vskills.in\/certification\/tutorial\/wp-content\/uploads\/2013\/05\/Apache-Cassandra.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/data-model-and-terms\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.vskills.in\/certification\/tutorial\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Data model and terms\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#website\",\"url\":\"https:\/\/www.vskills.in\/certification\/tutorial\/\",\"name\":\"Tutorial\",\"description\":\"Vskills - A initiative in elearning and certification\",\"publisher\":{\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.vskills.in\/certification\/tutorial\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#organization\",\"name\":\"Vskills\",\"url\":\"https:\/\/www.vskills.in\/certification\/tutorial\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.vskills.in\/certification\/tutorial\/wp-content\/uploads\/2017\/07\/vskills-min-logo.jpg\",\"contentUrl\":\"https:\/\/www.vskills.in\/certification\/tutorial\/wp-content\/uploads\/2017\/07\/vskills-min-logo.jpg\",\"width\":73,\"height\":55,\"caption\":\"Vskills\"},\"image\":{\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/vskills.in\/\",\"https:\/\/x.com\/vskills_in\",\"https:\/\/www.linkedin.com\/company-beta\/1371554\/\",\"https:\/\/www.youtube.com\/channel\/UCMWnscxPwRF_PqXo9B7q_Tw\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Data model and terms - Tutorial","description":"Data model and terms Vskills Government Certification in Apache Cassandra is very popular in India amongst developers working in the IT Bid data industry.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.vskills.in\/certification\/tutorial\/data-model-and-terms\/","og_locale":"en_US","og_type":"article","og_title":"Data model and terms - Tutorial","og_description":"Data model and terms Vskills Government Certification in Apache Cassandra is very popular in India amongst developers working in the IT Bid data industry.","og_url":"https:\/\/www.vskills.in\/certification\/tutorial\/data-model-and-terms\/","og_site_name":"Tutorial","article_publisher":"https:\/\/www.facebook.com\/vskills.in\/","article_modified_time":"2024-04-12T08:46:38+00:00","og_image":[{"url":"http:\/\/vskills.in\/certification\/tutorial\/wp-content\/uploads\/2013\/05\/Apache-Cassandra.jpg","type":"","width":"","height":""}],"twitter_misc":{"Est. reading time":"15 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/data-model-and-terms\/","url":"https:\/\/www.vskills.in\/certification\/tutorial\/data-model-and-terms\/","name":"Data model and terms - Tutorial","isPartOf":{"@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.vskills.in\/certification\/tutorial\/data-model-and-terms\/#primaryimage"},"image":{"@id":"https:\/\/www.vskills.in\/certification\/tutorial\/data-model-and-terms\/#primaryimage"},"thumbnailUrl":"http:\/\/vskills.in\/certification\/tutorial\/wp-content\/uploads\/2013\/05\/Apache-Cassandra.jpg","datePublished":"2013-05-10T07:22:08+00:00","dateModified":"2024-04-12T08:46:38+00:00","description":"Data model and terms Vskills Government Certification in Apache Cassandra is very popular in India amongst developers working in the IT Bid data industry.","breadcrumb":{"@id":"https:\/\/www.vskills.in\/certification\/tutorial\/data-model-and-terms\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.vskills.in\/certification\/tutorial\/data-model-and-terms\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/data-model-and-terms\/#primaryimage","url":"http:\/\/vskills.in\/certification\/tutorial\/wp-content\/uploads\/2013\/05\/Apache-Cassandra.jpg","contentUrl":"http:\/\/vskills.in\/certification\/tutorial\/wp-content\/uploads\/2013\/05\/Apache-Cassandra.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/data-model-and-terms\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.vskills.in\/certification\/tutorial\/"},{"@type":"ListItem","position":2,"name":"Data model and terms"}]},{"@type":"WebSite","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#website","url":"https:\/\/www.vskills.in\/certification\/tutorial\/","name":"Tutorial","description":"Vskills - A initiative in elearning and certification","publisher":{"@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.vskills.in\/certification\/tutorial\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#organization","name":"Vskills","url":"https:\/\/www.vskills.in\/certification\/tutorial\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#\/schema\/logo\/image\/","url":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-content\/uploads\/2017\/07\/vskills-min-logo.jpg","contentUrl":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-content\/uploads\/2017\/07\/vskills-min-logo.jpg","width":73,"height":55,"caption":"Vskills"},"image":{"@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/vskills.in\/","https:\/\/x.com\/vskills_in","https:\/\/www.linkedin.com\/company-beta\/1371554\/","https:\/\/www.youtube.com\/channel\/UCMWnscxPwRF_PqXo9B7q_Tw"]}]}},"_links":{"self":[{"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/pages\/20273","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/comments?post=20273"}],"version-history":[{"count":17,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/pages\/20273\/revisions"}],"predecessor-version":[{"id":122149,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/pages\/20273\/revisions\/122149"}],"wp:attachment":[{"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/media?parent=20273"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/categories?post=20273"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/tags?post=20273"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}