RISS 학술연구정보서비스

검색
다국어 입력

http://chineseinput.net/에서 pinyin(병음)방식으로 중국어를 변환할 수 있습니다.

변환된 중국어를 복사하여 사용하시면 됩니다.

예시)
  • 中文 을 입력하시려면 zhongwen을 입력하시고 space를누르시면됩니다.
  • 北京 을 입력하시려면 beijing을 입력하시고 space를 누르시면 됩니다.
닫기
    인기검색어 순위 펼치기

    RISS 인기검색어

      KCI등재

      경량 락킹 방법을 이용한 SQLite 데이터베이스 관리 시스템의 동시성 제어 성능 향상 기법 = Enhancing the performance of Currency Control in SQLite Database Management System Utilizing Lightweight Locking Method

      한글로보기

      https://www.riss.kr/link?id=A104116620

      • 0

        상세조회
      • 0

        다운로드
      서지정보 열기
      • 내보내기
      • 내책장담기
      • 공유하기
      • 오류접수

      부가정보

      다국어 초록 (Multilingual Abstract)

      SQLite is an open source database management system which has been widely used in smartphone apps and embedded software, because it is suitable for small-size environments such as mobile and embedded devices. While SQLite has the advantage running well on small embedded systems, it has several restrictions on its features. Of these restrictions, it uses the database unit as its locking granularity thus it suffers from poor performance when controling transactions concurrently. This paper implemented a new concurrency control mechanism of SQLite in order to provide with better performance of the concurrency control, with reserving the properties of embedded DBMSs. To achieve this goal, we adopt the Very Lightweight Locking (VLL) which can reduce the overhead of lock management and concurrent transaction control, and we extended the concurrency control method of SQLite based on the VLL method. We also implemented the concurrency control method with lesser locking granularity of the table unit in order to provide better performance. This paper describes the implementation details of the newly developed concurrency control mechanism and it also presents the performance evaluation of the method.
      번역하기

      SQLite is an open source database management system which has been widely used in smartphone apps and embedded software, because it is suitable for small-size environments such as mobile and embedded devices. While SQLite has the advantage running wel...

      SQLite is an open source database management system which has been widely used in smartphone apps and embedded software, because it is suitable for small-size environments such as mobile and embedded devices. While SQLite has the advantage running well on small embedded systems, it has several restrictions on its features. Of these restrictions, it uses the database unit as its locking granularity thus it suffers from poor performance when controling transactions concurrently. This paper implemented a new concurrency control mechanism of SQLite in order to provide with better performance of the concurrency control, with reserving the properties of embedded DBMSs. To achieve this goal, we adopt the Very Lightweight Locking (VLL) which can reduce the overhead of lock management and concurrent transaction control, and we extended the concurrency control method of SQLite based on the VLL method. We also implemented the concurrency control method with lesser locking granularity of the table unit in order to provide better performance. This paper describes the implementation details of the newly developed concurrency control mechanism and it also presents the performance evaluation of the method.

      더보기

      국문 초록 (Abstract)

      SQLite는 모바일 장치, 내장형 장치 등 소형기기 또는 규모가 작은 환경에 적합하여 스마트폰 앱, 내장형 소프트웨어 등에 널리 사용되는 오픈소스 데이터베이스 관리 시스템이다. 이 SQLite 는 소스 코드의 크기가 작아 소형 시스템에서도 잘 동작한다는 장점이 있지만, 반면에 제공하는 기능에 여러 가지 제한이 있다는 문제점이 있다. 이런 제한 중의 하나로 SQLite은 트랜잭션을 데이터베이스 단위로 동시성 제어를 하고 있어 여러 트랜잭션들이 함께 실행될 경우 성능이 낮아진다. 이논문에서는 SQLite를 내장형 데이터베이스 시스템의 특성을 유지하면서도 트랜잭션의 동시성 제어성능을 높이는 기능을 구현하였다. 이를 위해 락(lock) 관리 및 제어 작업에 관련된 오버헤드를 줄이면서 동시성 제어를 할 수 있는 경량 락킹 기법(Very Lightweight Locking, VLL)을 활용하여SQLite 데이터베이스 관리 시스템의 동시성제어 시스템을 개선하였다. 또 SQLite의 동세성 제어 단위를 테이블 단위로 낮춰 트랜잭션의 동시성 제어 성능을 높이도록 구현하였다. 이 논문에서는 이렇게 개발한 동시성 제어 기법의 구현 내용을 소개하고, 실험을 통해 구현한 동시성 제어 기법의 성능을 비교.평가하였다.
      번역하기

      SQLite는 모바일 장치, 내장형 장치 등 소형기기 또는 규모가 작은 환경에 적합하여 스마트폰 앱, 내장형 소프트웨어 등에 널리 사용되는 오픈소스 데이터베이스 관리 시스템이다. 이 SQLite 는 ...

      SQLite는 모바일 장치, 내장형 장치 등 소형기기 또는 규모가 작은 환경에 적합하여 스마트폰 앱, 내장형 소프트웨어 등에 널리 사용되는 오픈소스 데이터베이스 관리 시스템이다. 이 SQLite 는 소스 코드의 크기가 작아 소형 시스템에서도 잘 동작한다는 장점이 있지만, 반면에 제공하는 기능에 여러 가지 제한이 있다는 문제점이 있다. 이런 제한 중의 하나로 SQLite은 트랜잭션을 데이터베이스 단위로 동시성 제어를 하고 있어 여러 트랜잭션들이 함께 실행될 경우 성능이 낮아진다. 이논문에서는 SQLite를 내장형 데이터베이스 시스템의 특성을 유지하면서도 트랜잭션의 동시성 제어성능을 높이는 기능을 구현하였다. 이를 위해 락(lock) 관리 및 제어 작업에 관련된 오버헤드를 줄이면서 동시성 제어를 할 수 있는 경량 락킹 기법(Very Lightweight Locking, VLL)을 활용하여SQLite 데이터베이스 관리 시스템의 동시성제어 시스템을 개선하였다. 또 SQLite의 동세성 제어 단위를 테이블 단위로 낮춰 트랜잭션의 동시성 제어 성능을 높이도록 구현하였다. 이 논문에서는 이렇게 개발한 동시성 제어 기법의 구현 내용을 소개하고, 실험을 통해 구현한 동시성 제어 기법의 성능을 비교.평가하였다.

      더보기

      참고문헌 (Reference)

      1 강유진, "데이터베이스 클러스터 시스템 환경에서의 중첩 질의 분할 처리기법" 한국엔터프라이즈아키텍처학회 7 (7): 89-96, 2010

      2 김남수, "다차원 텍스트 큐브를 이용한 호텔 리뷰 데이터의 다차원 키워드 검색 및 분석" 한국엔터프라이즈아키텍처학회 11 (11): 63-73, 2014

      3 "http://www.postgresql.org"

      4 "http://www.garret.ru/fastdb.html"

      5 "http://sqlite.org"

      6 "http://ko.wikipedia.org/wiki/free-open source software"

      7 D. Chen, "Use of SQLite on Embedded System" 210-213, 2010

      8 K. Yue, "Research of Embedded Database SQLite Application in Intelligent Remote Monitoring System" 2 : 96-100, 2010

      9 C. Bi, "Research and Application of SQLite Embedded Database Technology" 8 (8): 83-92, 2009

      10 C. Mohan, "Recovery and Coherencycontrol Protocols for Fast Inter-system Page Transfer and Fine-granularity in Shared Disks Transaction Environment" 193-207, 1991

      1 강유진, "데이터베이스 클러스터 시스템 환경에서의 중첩 질의 분할 처리기법" 한국엔터프라이즈아키텍처학회 7 (7): 89-96, 2010

      2 김남수, "다차원 텍스트 큐브를 이용한 호텔 리뷰 데이터의 다차원 키워드 검색 및 분석" 한국엔터프라이즈아키텍처학회 11 (11): 63-73, 2014

      3 "http://www.postgresql.org"

      4 "http://www.garret.ru/fastdb.html"

      5 "http://sqlite.org"

      6 "http://ko.wikipedia.org/wiki/free-open source software"

      7 D. Chen, "Use of SQLite on Embedded System" 210-213, 2010

      8 K. Yue, "Research of Embedded Database SQLite Application in Intelligent Remote Monitoring System" 2 : 96-100, 2010

      9 C. Bi, "Research and Application of SQLite Embedded Database Technology" 8 (8): 83-92, 2009

      10 C. Mohan, "Recovery and Coherencycontrol Protocols for Fast Inter-system Page Transfer and Fine-granularity in Shared Disks Transaction Environment" 193-207, 1991

      11 K. Ren, "Lightweight Locking for Main Memory Database Systems" 6 (6): 2012

      12 N. Kim, "Implementation of Concurrency Control in SQLite DBMS using Very Lightweight Locking" Kangwon National University 2015

      13 R. Elmasri, "Fundamentals of Database Systems" Pearson 2014

      14 H. Kimura, "Efficient Locking Techniques for Databases on Modern Hardware" 2012

      15 H. Kimura, "Efficient Locking Techniques for Databases on Modern Hardware" 2012

      16 L. Junyan, "Application Research of Embedded Database SQLite" 2 : 539-543, 2009

      17 A. Joshi, "Adaptive Locking Strategies in a Multinode Data Sharing Environment" 181-191, 1991

      더보기

      동일학술지(권/호) 다른 논문

      동일학술지 더보기

      더보기

      분석정보

      View

      상세정보조회

      0

      Usage

      원문다운로드

      0

      대출신청

      0

      복사신청

      0

      EDDS신청

      0

      동일 주제 내 활용도 TOP

      더보기

      주제

      연도별 연구동향

      연도별 활용동향

      연관논문

      연구자 네트워크맵

      공동연구자 (7)

      유사연구자 (20) 활용도상위20명

      인용정보 인용지수 설명보기

      학술지 이력

      학술지 이력
      연월일 이력구분 이력상세 등재구분
      2023 평가예정 재인증평가 신청대상 (재인증)
      2020-01-01 평가 등재학술지 선정 (재인증) KCI등재
      2019-12-01 평가 등재후보로 하락 (계속평가) KCI등재후보
      2016-02-29 학회명변경 한글명 : 한국ITA학회 -> 한국엔터프라이즈아키텍처학회
      영문명 : Korea Institute of information technology Architecture -> Korea Institute of Enterprise Architecture
      KCI등재
      2016-01-01 평가 등재학술지 유지 (계속평가) KCI등재
      2016-01-01 학술지명변경 한글명 : 정보기술아키텍처 연구 -> 정보화연구 KCI등재
      2012-01-01 평가 등재학술지 선정 (등재후보2차) KCI등재
      2011-01-01 평가 등재후보 1차 PASS (등재후보1차) KCI등재후보
      2010-01-01 평가 등재후보 1차 FAIL (등재후보1차) KCI등재후보
      2008-01-01 평가 등재후보학술지 선정 (신규평가) KCI등재후보
      더보기

      학술지 인용정보

      학술지 인용정보
      기준연도 WOS-KCI 통합IF(2년) KCIF(2년) KCIF(3년)
      2016 0.68 0.68 0.61
      KCIF(4년) KCIF(5년) 중심성지수(3년) 즉시성지수
      0.56 0.5 0.571 0.26
      더보기

      이 자료와 함께 이용한 RISS 자료

      나만을 위한 추천자료

      해외이동버튼