# HG changeset patch # User Nobuyasu Oshiro # Date 1391188337 -32400 # Node ID 3c070028199b420ea66e7ebdfba13f8b4c6b05cc # Parent 39c2180b571987082739973320d05e2122a87339 Added consistency_quorum diff -r 39c2180b5719 -r 3c070028199b paper/chapter1.tex --- a/paper/chapter1.tex Fri Jan 31 23:33:49 2014 +0900 +++ b/paper/chapter1.tex Sat Feb 01 02:12:17 2014 +0900 @@ -7,22 +7,26 @@ 最後に既存の NoSQL データベースとして Cassandra, MongoDB, Neo4j の特徴について述べる. \section{Relational Database} -Relational Database(RDB)は最も長く広く使われているデータベースである. -列と行からなる2次元のテーブルによるスキーマは - +RDBは列と行からなる2次元のテーブルにより実装されるデータベースである. +データ型として文字列, 数値, 日付, BOOL型がありシステムによりデータに型が強制される. +RDBはスキーマの決まったデータを扱うことに長けている. +構造化言語問い合わせ言語としてSQLがある. -\section{RDB と NoSQL} -データベースは大別するとRDBとNoSQLに分けられる. -RDBとは行と列からなる2次元のテーブルによりデータを保持するデータベースである. -RDBはデータベースアクセス言語としてSQL言語を持ち, 一台のマシンでデータを扱う分には最適である. -しかし, RDB はマシン単体以上の処理性能をだすことができない. -そこで, 汎用的なPCをいくつも用意しデータや処理を分散して管理できるデータベースが求められた. -それらのデータベースはNoSQL(Not Only SQL) と呼ばれSQLを使用しないデータベースのことを指す. -2次元のテーブルでは無く, Key-Value, ドキュメント, グラフといった表現形式でデータの保持を行う. +RDBはデータベースの中でも長年主要な立ち位置にあるデータベースだが, 苦手としている +ことがある. +それは, スキーマレスなデータの扱いやマシンの台数を増やして処理速度 +をあげることである. +それらRDBが苦手としていることを得意とするNoSQLと呼ばれるデータベースがある. + +\section{NoSQLデータベース} +NoSQLはNot Only SQLの略で, SQLを使わないデータベースのことを指す. +NoSQLデータベースはRDBとは違いスキーマがない. +そのため, 扱おうとしているデータの形が決まっていなくても気軽に使うことができる. +また, スケーラビリティも持ちあわせており, 汎用的なマシンを集めることで性能をあげる +ことができるといった特徴を持つ. + NoSQLは, RDBには向いていない処理を行うことを目的にしている. -% 分散データベースは, NoSQL に分けられる. - \section{CAP 定理} 分散データシステムにおいて次の3つを同時に保証することはできない \begin{itemize} @@ -42,37 +46,6 @@ 分散データシステムを考える場合は, この CAP 定理を意識していなければならない. -\section{Cassandra} -Cassandra\cite{cassandra} は2008年7月にFacebookによってオープンソースとして公開された Key-Value なデータベースである. -AmazonのDynamo\cite{dynamo} という分散Key-Valueデータベースの影響を受けて作られている. -スキーマレスな NoSQL データベースになる. - -Cassandraはサーバノードの配置にConsistent hashingアルゴリズムを用いる. -Consistent hashingによりノードは論理的にリング上に配置される. -リングには数値で表される位置がある. -データを書き込む際には, キーとなるハッシュ値に従いそのリングの位置から時計回りに近いサーバノードへと書き込まれる. -Consistent hashingを用いることで, ノードの数が増減した場合に, 再配置をしなくてもよいという利点がある. -データの偏りにより少数のサーバへの負荷が大きい場合に, 負荷が高いハッシュ値が指すリング上に -新たなノードを追加することで負荷を下げるといった手段もとれる. - -データを最大どれだけ配置するかを示すReplication factorと, データの読み書きをいくつのノードから -行うのかを決めるConsistencyレベルを設定できる. -Consistencyレベルには主に ONE, QUORAM, ALL がある. -Replication factorの数値を N とした場合, ONE は1つのノード, QUORUM は N/2 + 1 のノード, ALL は N のノード -へと読み書きを行う. -Consistencyハッシング, Replication factorとConsistencyレベルの設定により Cassandra は -高い可用性と分断耐性を持つ. - -% keyspace, super column といったデータの表現についても述べるべきか? -% Replication factorはkeyspace毎に設定できる -\begin{figure}[htpb] - \begin{center} - \includegraphics[scale=0.7]{figures/cassandra_ring.pdf} - \caption{Consistency・ハッシング} - \label{fig:cassandra_ring} - \end{center} -\end{figure} - \newpage \section{MongoDB} @@ -127,6 +100,55 @@ \end{center} \end{figure} +\newpage +\section{memcached} + + + + + +\section{Cassandra} +Cassandra\cite{cassandra} は2008年7月にFacebookによってオープンソースとして公開された Key-Value なデータベースである. +AmazonのDynamo\cite{dynamo} という分散Key-Valueデータベースの影響を受けて作られている. +スキーマレスな NoSQL データベースになる. + +Cassandraはサーバノードの配置にConsistent hashingアルゴリズムを用いる. +Consistent hashingによりノードは論理的にリング上に配置される. +リングには数値で表される位置がある. +データを書き込む際には, キーとなるハッシュ値に従いそのリングの位置から時計回りに近いサーバノードへと書き込まれる. +Consistent hashingを用いることで, ノードの数が増減した場合に, 再配置をしなくてもよいという利点がある. +データの偏りにより少数のサーバへの負荷が大きい場合に, 負荷が高いハッシュ値が指すリング上に +新たなノードを追加することで負荷を下げるといった手段もとれる. +Consistency Hashingによるリングの形成を図\ref{fig:cassandra_ring}に示す. + +\begin{figure}[htpb] + \begin{center} + \includegraphics[scale=0.7]{figures/cassandra_ring.pdf} + \caption{ConsisteyncyLevel QUORUMによる書き込み} + \label{fig:cassandra_ring} + \end{center} +\end{figure} + +Cassandraはデータを最大どれだけ配置するかを示すReplication factorと, データの読み書きをいくつのノードから +行うのかを決めるConsistency Levelの設定が行える. +Consistency Levelには主に ONE, QUORAM, ALL がある. +Replication factorの数値をNとした場合, ONE は1つのノード, QUORUMは N/2 + 1 のノード, ALLはNのノード +へと読み書きを行う. +Replication factorとConsistentcy Levelの設定により, Cassandraは最新のデータを取得したいときと +そうでないときで読み込みと書き込みの速度をあげることができる. +一貫性が重要なデータに関してはQUORUMにより書き込み読み込みを行うことで常に最新のデータを取得することができる. +多少データが古くてもよい場合はONEなどを使用することでレスポンスを早くすることができる. +ConsisutencyLevel QUORUMの時のデータ書き込みについて図\ref{fig:cassandra_quorum}に示す. +Consistencyハッシング, Replication factorとConsistencyレベルの設定により Cassandra は +高い可用性と分断耐性を持つ. + +\begin{figure}[htpb] + \begin{center} + \includegraphics[scale=0.6]{figures/consistency_quorum.pdf} + \caption{ConsisteyncyLevel QUORUMによる書き込み} + \label{fig:cassandra_quorum} + \end{center} +\end{figure} @@ -134,4 +156,3 @@ - diff -r 39c2180b5719 -r 3c070028199b paper/figures/consistency_quorum.pdf Binary file paper/figures/consistency_quorum.pdf has changed diff -r 39c2180b5719 -r 3c070028199b paper/figures/consistency_quorum.xbb --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/paper/figures/consistency_quorum.xbb Sat Feb 01 02:12:17 2014 +0900 @@ -0,0 +1,8 @@ +%%Title: ./figures/consistency_quorum.pdf +%%Creator: extractbb 20130405 +%%BoundingBox: 0 0 806 301 +%%HiResBoundingBox: 0.000000 0.000000 806.000000 301.000000 +%%PDFVersion: 1.4 +%%Pages: 1 +%%CreationDate: Sat Feb 1 02:11:41 2014 + diff -r 39c2180b5719 -r 3c070028199b paper/figures/consisutency_quorum.pdf Binary file paper/figures/consisutency_quorum.pdf has changed diff -r 39c2180b5719 -r 3c070028199b paper/figures/consisutency_quorum.xbb --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/paper/figures/consisutency_quorum.xbb Sat Feb 01 02:12:17 2014 +0900 @@ -0,0 +1,8 @@ +%%Title: ./consisutency_quorum.pdf +%%Creator: extractbb 20130405 +%%BoundingBox: 0 0 806 301 +%%HiResBoundingBox: 0.000000 0.000000 806.000000 301.000000 +%%PDFVersion: 1.4 +%%Pages: 1 +%%CreationDate: Sat Feb 1 02:02:52 2014 + diff -r 39c2180b5719 -r 3c070028199b paper/graffle/consisutency_quorum.graffle --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/paper/graffle/consisutency_quorum.graffle Sat Feb 01 02:12:17 2014 +0900 @@ -0,0 +1,862 @@ + + + + + ActiveLayerIndex + 0 + ApplicationVersion + + com.omnigroup.OmniGraffle + 139.18.0.187838 + + AutoAdjust + + BackgroundGraphic + + Bounds + {{0, 0}, {1118, 783}} + Class + SolidGraphic + ID + 2 + Style + + shadow + + Draws + NO + + stroke + + Draws + NO + + + + BaseZoom + 0 + CanvasOrigin + {0, 0} + ColumnAlign + 1 + ColumnSpacing + 36 + CreationDate + 2014-01-31 16:16:09 +0000 + Creator + Oshiro Nobuyasu + DisplayScale + 1 0/72 in = 1.0000 in + GraphDocumentVersion + 8 + GraphicsList + + + Bounds + {{457.22728857398033, 90.112236022949219}, {78, 21}} + Class + ShapedGraphic + ID + 79 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 \'96\'e2\'82\'a2\'8d\'87\'82\'ed\'82\'b9} + + + + Bounds + {{499.0389404296875, 234.12240600585938}, {78, 21}} + Class + ShapedGraphic + ID + 78 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 \'96\'e2\'82\'a2\'8d\'87\'82\'ed\'82\'b9} + + + + Class + LineGraphic + Head + + ID + 69 + + ID + 77 + Points + + {556.61977430850789, 116.77790796482238} + {490.30877769978633, 276.03840501972201} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 67 + + + + Class + LineGraphic + Head + + ID + 68 + + ID + 76 + Points + + {537.32273721337003, 116.57775552750067} + {480.15128321200524, 151.64672243507107} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 67 + + + + Bounds + {{591.4739990234375, 50.816314697265625}, {209.40908813476562, 85.591842651367188}} + Class + ShapedGraphic + ID + 75 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 3\'91\'e4\'82\'cc\'82\'a4\'82\'bf2\'91\'e4\'82\'c9\'96\'e2\'82\'a2\'8d\'87\'82\'ed\'82\'b9\'82\'ea\'82\'ce\ +\'8d\'c5\'90\'56\'82\'cc\'83\'66\'81\'5b\'83\'5e\'82\'aa\'82\'c6\'82\'ea\'82\'e9} + + + + Bounds + {{644, 151.90815734863281}, {56.246753246753265, 31.408163265306126}} + Class + ShapedGraphic + ID + 70 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 node 2} + + + + Bounds + {{455.45453158291889, 276.49999237060547}, {56.246753246753265, 31.408163265306126}} + Class + ShapedGraphic + ID + 69 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 node 4} + + + + Bounds + {{426, 151.90815734863281}, {56.246753246753265, 31.408163265306126}} + Class + ShapedGraphic + ID + 68 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 node 5} + + + + Bounds + {{535.22726717862201, 84.908157348632812}, {56.246753246753265, 31.408163265306126}} + Class + ShapedGraphic + ID + 67 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 node 1} + + + + Bounds + {{610, 276.50000000000011}, {56.246753246753265, 31.408163265306126}} + Class + ShapedGraphic + ID + 66 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 node 3} + + + + Bounds + {{446.51948051948068, 97.193871634347119}, {233.66233766233765, 221.42857142857136}} + Class + ShapedGraphic + ID + 65 + Shape + Circle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + + Text + + VerticalPad + 0 + + + + Class + LineGraphic + ID + 53 + Points + + {306, 209} + {412.90261840820312, 209} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + Width + 3 + + + + + Bounds + {{200.4935302734375, 57.816314697265625}, {209.40908813476562, 85.591842651367188}} + Class + ShapedGraphic + ID + 47 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 \'83\'4c\'81\'5b\'82\'cc\'92\'6c\'82\'c6Replication factor\'82\'a9\'82\'e7 node 3 ~ node 5 \'82\'dc\'82\'c5\'82\'c9\'8f\'91\'82\'ab\'8d\'9e\'82\'de\'83\'66\'81\'5b\'83\'5e\'82\'be\'82\'c6\'82\'b7\'82\'e9} + + + + Bounds + {{192.24676513671875, 235.20407104492188}, {78, 21}} + Class + ShapedGraphic + ID + 46 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 \'8f\'91\'82\'ab\'8d\'9e\'82\'dd} + + + + Bounds + {{114.24676513671875, 214.20407867431641}, {78, 21}} + Class + ShapedGraphic + ID + 45 + Shape + Rectangle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + stroke + + Draws + NO + + + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265 +\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset128 HiraKakuProN-W3;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 \'8f\'91\'82\'ab\'8d\'9e\'82\'dd} + + + + Class + LineGraphic + Head + + ID + 4 + + ID + 42 + Points + + {251.94115844425767, 183.59197566301455} + {111.76012638541454, 276.22433732152984} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 38 + + + + Class + LineGraphic + Head + + ID + 5 + + ID + 41 + Points + + {271.70624090817296, 183.79868245182686} + {246.54051233858033, 276.01763816211218} + + Style + + stroke + + HeadArrow + FilledArrow + Legacy + + LineType + 1 + TailArrow + 0 + + + Tail + + ID + 38 + + + + Bounds + {{248, 151.90815734863281}, {56.246753246753265, 31.408163265306126}} + Class + ShapedGraphic + ID + 38 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 node 2} + + + + Bounds + {{59.454531582918889, 276.49999237060547}, {56.246753246753265, 31.408163265306126}} + Class + ShapedGraphic + ID + 4 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 node 4} + + + + Bounds + {{30, 151.90815734863281}, {56.246753246753265, 31.408163265306126}} + Class + ShapedGraphic + ID + 3 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 node 5} + + + + Bounds + {{139.22726717862207, 84.908157348632812}, {56.246753246753265, 31.408163265306126}} + Class + ShapedGraphic + ID + 1 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 node 1} + + + + Bounds + {{214, 276.50000000000011}, {56.246753246753265, 31.408163265306126}} + Class + ShapedGraphic + ID + 5 + Shape + Rectangle + Text + + Text + {\rtf1\ansi\ansicpg1252\cocoartf1265 +\cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc + +\f0\fs24 \cf0 node 3} + + + + Bounds + {{50.51948051948068, 97.193871634347119}, {233.66233766233765, 221.42857142857136}} + Class + ShapedGraphic + ID + 28 + Shape + Circle + Style + + fill + + Draws + NO + + shadow + + Draws + NO + + + Text + + VerticalPad + 0 + + + + GridInfo + + GuidesLocked + NO + GuidesVisible + YES + HPages + 2 + ImageCounter + 1 + KeepToScale + + Layers + + + Lock + NO + Name + Layer 1 + Print + YES + View + YES + + + LayoutInfo + + Animate + NO + circoMinDist + 18 + circoSeparation + 0.0 + layoutEngine + dot + neatoSeparation + 0.0 + twopiSeparation + 0.0 + + LinksVisible + NO + MagnetsVisible + NO + MasterSheets + + ModificationDate + 2014-01-31 17:05:32 +0000 + Modifier + Oshiro Nobuyasu + NotesVisible + NO + Orientation + 2 + OriginVisible + NO + PageBreaks + YES + PrintInfo + + NSBottomMargin + + float + 41 + + NSHorizonalPagination + + coded + BAtzdHJlYW10eXBlZIHoA4QBQISEhAhOU051bWJlcgCEhAdOU1ZhbHVlAISECE5TT2JqZWN0AIWEASqEhAFxlwCG + + NSLeftMargin + + float + 18 + + NSPaperSize + + size + {595, 842} + + NSPrintReverseOrientation + + int + 0 + + NSRightMargin + + float + 18 + + NSTopMargin + + float + 18 + + + PrintOnePage + + ReadOnly + NO + RowAlign + 1 + RowSpacing + 36 + SheetTitle + Canvas 1 + SmartAlignmentGuidesActive + YES + SmartDistanceGuidesActive + YES + UniqueID + 1 + UseEntirePage + + VPages + 1 + WindowInfo + + CurrentSheet + 0 + ExpandedCanvases + + + name + Canvas 1 + + + Frame + {{574, 138}, {859, 920}} + ListView + + OutlineWidth + 142 + RightSidebar + + ShowRuler + + Sidebar + + SidebarWidth + 120 + VisibleRegion + {{59, 0}, {710, 766}} + Zoom + 1 + ZoomValues + + + Canvas 1 + 1 + 1 + + + + + diff -r 39c2180b5719 -r 3c070028199b paper/master_paper.pdf Binary file paper/master_paper.pdf has changed