Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

# -*- coding: utf-8 -*- 

# 

# Licensed under the Apache License, Version 2.0 (the "License"); 

# you may not use this file except in compliance with the License. 

# You may obtain a copy of the License at 

# 

# http://www.apache.org/licenses/LICENSE-2.0 

# 

# Unless required by applicable law or agreed to in writing, software 

# distributed under the License is distributed on an "AS IS" BASIS, 

# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 

# See the License for the specific language governing permissions and 

# limitations under the License. 

# 

from __future__ import absolute_import 

from __future__ import division 

from __future__ import print_function 

from __future__ import unicode_literals 

 

from builtins import object 

 

import logging 

 

from airflow import configuration 

from airflow.exceptions import AirflowException 

 

class LoggingMixin(object): 

""" 

Convenience super-class to have a logger configured with the class name 

""" 

 

@property 

def logger(self): 

try: 

return self._logger 

except AttributeError: 

self._logger = logging.root.getChild(self.__class__.__module__ + '.' + self.__class__.__name__) 

return self._logger 

 

 

class S3Log(object): 

""" 

Utility class for reading and writing logs in S3. 

Requires airflow[s3] and setting the REMOTE_BASE_LOG_FOLDER and 

REMOTE_LOG_CONN_ID configuration options in airflow.cfg. 

""" 

def __init__(self): 

remote_conn_id = configuration.get('core', 'REMOTE_LOG_CONN_ID') 

try: 

from airflow.hooks.S3_hook import S3Hook 

self.hook = S3Hook(remote_conn_id) 

except: 

self.hook = None 

logging.error( 

'Could not create an S3Hook with connection id "{}". ' 

'Please make sure that airflow[s3] is installed and ' 

'the S3 connection exists.'.format(remote_conn_id)) 

 

def read(self, remote_log_location, return_error=False): 

""" 

Returns the log found at the remote_log_location. Returns '' if no 

logs are found or there is an error. 

 

:param remote_log_location: the log's location in remote storage 

:type remote_log_location: string (path) 

:param return_error: if True, returns a string error message if an 

error occurs. Otherwise returns '' when an error occurs. 

:type return_error: bool 

""" 

if self.hook: 

try: 

s3_key = self.hook.get_key(remote_log_location) 

if s3_key: 

return s3_key.get_contents_as_string().decode() 

except: 

pass 

 

# raise/return error if we get here 

err = 'Could not read logs from {}'.format(remote_log_location) 

logging.error(err) 

return err if return_error else '' 

 

 

def write(self, log, remote_log_location, append=False): 

""" 

Writes the log to the remote_log_location. Fails silently if no hook 

was created. 

 

:param log: the log to write to the remote_log_location 

:type log: string 

:param remote_log_location: the log's location in remote storage 

:type remote_log_location: string (path) 

:param append: if False, any existing log file is overwritten. If True, 

the new log is appended to any existing logs. 

:type append: bool 

 

""" 

if self.hook: 

 

if append: 

old_log = self.read(remote_log_location) 

log = old_log + '\n' + log 

try: 

self.hook.load_string( 

log, 

key=remote_log_location, 

replace=True, 

encrypt=configuration.getboolean('core', 'ENCRYPT_S3_LOGS')) 

return 

except: 

pass 

 

# raise/return error if we get here 

logging.error('Could not write logs to {}'.format(remote_log_location)) 

 

 

class GCSLog(object): 

""" 

Utility class for reading and writing logs in GCS. Requires 

airflow[gcp_api] and setting the REMOTE_BASE_LOG_FOLDER and 

REMOTE_LOG_CONN_ID configuration options in airflow.cfg. 

""" 

def __init__(self): 

""" 

Attempt to create hook with airflow[gcp_api]. 

""" 

remote_conn_id = configuration.get('core', 'REMOTE_LOG_CONN_ID') 

self.hook = None 

 

try: 

from airflow.contrib.hooks.gcs_hook import GoogleCloudStorageHook 

self.hook = GoogleCloudStorageHook( 

google_cloud_storage_conn_id=remote_conn_id) 

except: 

logging.error( 

'Could not create a GoogleCloudStorageHook with connection id ' 

'"{}". Please make sure that airflow[gcp_api] is installed ' 

'and the GCS connection exists.'.format(remote_conn_id)) 

 

def read(self, remote_log_location, return_error=False): 

""" 

Returns the log found at the remote_log_location. 

 

:param remote_log_location: the log's location in remote storage 

:type remote_log_location: string (path) 

:param return_error: if True, returns a string error message if an 

error occurs. Otherwise returns '' when an error occurs. 

:type return_error: bool 

""" 

if self.hook: 

try: 

bkt, blob = self.parse_gcs_url(remote_log_location) 

return self.hook.download(bkt, blob).decode() 

except: 

pass 

 

# raise/return error if we get here 

err = 'Could not read logs from {}'.format(remote_log_location) 

logging.error(err) 

return err if return_error else '' 

 

def write(self, log, remote_log_location, append=False): 

""" 

Writes the log to the remote_log_location. Fails silently if no hook 

was created. 

 

:param log: the log to write to the remote_log_location 

:type log: string 

:param remote_log_location: the log's location in remote storage 

:type remote_log_location: string (path) 

:param append: if False, any existing log file is overwritten. If True, 

the new log is appended to any existing logs. 

:type append: bool 

 

""" 

if self.hook: 

if append: 

old_log = self.read(remote_log_location) 

log = old_log + '\n' + log 

 

try: 

bkt, blob = self.parse_gcs_url(remote_log_location) 

from tempfile import NamedTemporaryFile 

with NamedTemporaryFile(mode='w+') as tmpfile: 

tmpfile.write(log) 

# Force the file to be flushed, since we're doing the 

# upload from within the file context (it hasn't been 

# closed). 

tmpfile.flush() 

self.hook.upload(bkt, blob, tmpfile.name) 

except: 

# raise/return error if we get here 

logging.error('Could not write logs to {}'.format(remote_log_location)) 

 

def parse_gcs_url(self, gsurl): 

""" 

Given a Google Cloud Storage URL (gs://<bucket>/<blob>), returns a 

tuple containing the corresponding bucket and blob. 

""" 

# Python 3 

try: 

from urllib.parse import urlparse 

# Python 2 

except ImportError: 

from urlparse import urlparse 

 

parsed_url = urlparse(gsurl) 

if not parsed_url.netloc: 

raise AirflowException('Please provide a bucket name') 

else: 

bucket = parsed_url.netloc 

blob = parsed_url.path.strip('/') 

return (bucket, blob)